/* 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, 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;
}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { background: #fff; color: #191919; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.25s; }
img { border: 0; max-width: 100%; display: block; }
button, input, optgroup, select, textarea {
  font-family: inherit; font-size: inherit; line-height: inherit;
}

/* BRAND & MONOCHROME SOPHISTICATED PALETTE */
:root {
  --black: #0e0e0e;
  --dark-gray: #2b2b2b;
  --mid-gray: #757575;
  --light-gray: #e5e5e5;
  --white: #fff;
  --primary: #191919;     /* very dark gray, almost black */
  --secondary: #787878;   /* mid gray for subtle accents */
  --accent: #eaeaea;      /* light gray for highlights */
  --brand-green: #275246; /* used for subtle hover, not main backgrounds */
  --brand-sand: #B1926B;
  --brand-neutral-bg: #f9f9f9;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/**********************************************/
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, li, span, dd {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 32px;
}
strong { font-weight: 700; }
em { font-style: italic; }
.testimonial-meta { color: var(--dark-gray); font-size: 1rem; font-style: italic; }

/**********************************************/
/* HEADER & NAVIGATION */
header {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1100;
}
nav {
  display: flex;
  align-items: center;
  gap: 0 32px;
  padding: 16px 0;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}
nav a.cta {
  background: var(--black);
  color: var(--white);
  padding: 8px 17px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.08);
  transition: background 0.3s, color 0.3s;
}
nav a.cta:hover, nav a.cta:focus {
  background: var(--brand-green);
  color: var(--white);
}
nav a:hover, nav a:focus {
  background: var(--light-gray);
  color: var(--black);
}
nav img {
  height: 40px;
  margin-right: 18px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-left: auto;
  margin-right: 10px;
  z-index: 1201;
  transition: background 0.2s;
  border-radius: 50%;
  padding: 8px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,19,19,0.98);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,.45,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 28px 0 28px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.1rem;
  margin-bottom: 8px;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-sand);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(240,240,240,0.08);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-sand);
}

/**********************************************/
/* FLEXBOX LAYOUTS & CONTAINERS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(40,40,40,0.08);
  padding: 32px 30px 28px;
  margin-bottom: 20px;
  position: relative;
  min-width: 270px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.23s;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(40,40,40,0.16);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px 20px;
  margin-bottom: 20px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(30,30,30,0.06);
  max-width: 470px;
  transition: border 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--brand-green);
  box-shadow: 0 4px 24px 0 rgba(25,82,70,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**********************************************/
/* HERO / INTRO */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 80px 0;
}
.hero h1, .hero .subheadline {
  color: var(--white);
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
  gap: 0;
}
.hero .cta {
  margin-top: 32px;
}

/**********************************************/
/* FEATURES SECTION */
.features {
  padding-top: 40px;
  padding-bottom: 40px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.features .feature-grid li {
  background: var(--accent);
  border-radius: 13px;
  box-shadow: 0 2px 6px 0 rgba(30,30,30,0.05);
  padding: 24px 18px 20px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.24s;
}
.features .feature-grid li img {
  height: 34px;
  margin-bottom: 6px;
}
.features .feature-grid li:hover {
  box-shadow: 0 4px 14px 0 rgba(0,0,0,0.13);
}

/**********************************************/
/* SERVICES LISTS */
.services-list, .services ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
  padding-left: 0;
}
.services-list li, .services ul li {
  font-size: 1.12rem;
  line-height: 1.7;
  padding-left: 0;
  color: var(--primary);
}

.process ol {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: proc;
  margin-top: 24px;
  margin-bottom: 8px;
}
.process ol li {
  font-size: 1.12rem;
  position: relative;
  background: var(--accent);
  border-radius: 10px;
  padding: 24px 22px 20px 54px;
  margin-bottom: 8px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.process ol li:before {
  counter-increment: proc;
  content: counter(proc);
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 14px;
  top: 26px;
  font-size: 1.2rem;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.08);
}
.process ol li img {
  height: 28px;
  margin-left: auto;
}

/**********************************************/
/* TESTIMONIALS */
.testimonials {
  background: var(--brand-neutral-bg);
  padding: 60px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 32px;
  margin-top: 32px;
}

.testimonial-card .stars {
  color: var(--brand-sand);
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.09em;
  margin-bottom: 8px;
}

/**********************************************/
/* CTA BANNERS */
.cta {
  background: var(--black);
  color: var(--white);
  border-radius: 18px;
  padding: 19px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  box-shadow: 0 2px 10px 0 rgba(30,30,30,0.10);
  display: inline-block;
  letter-spacing: 0.05em;
  transition: background 0.24s, box-shadow 0.24s, color 0.22s;
  margin-top: 16px;
  margin-bottom: 0;
}
.cta:hover, .cta:focus {
  background: var(--brand-sand);
  color: var(--black);
  box-shadow: 0 8px 24px 0 rgba(45,45,45,0.18);
}

/**********************************************/
/* ABOUT, VALUES, TEAM CARDS */
.brand-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-left: 0;
  font-size: 1.08rem;
}
.values .text-section ul {
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.team .text-section ul {
  gap: 18px;
  margin-top: 15px;
  margin-bottom: 12px;
}

/**********************************************/
/* FAQ / LEGAL / DLs */
.faq dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.faq dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.faq dd {
  margin-left: 0;
  margin-bottom: 12px;
  font-size: 1.01rem;
  padding-left: 12px;
  color: var(--secondary);
}
.legal .text-section ul {
  gap: 10px;
  margin-top: 10px;
}

/**********************************************/
/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact-details li img {
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.location-map {
  margin-top: 32px;
}

/**********************************************/
/* FOOTER */
footer {
  background: var(--black);
  color: var(--light-gray);
  padding: 40px 0 28px 0;
  border-top: 1px solid var(--mid-gray);
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  margin-bottom: 24px;
  justify-content: center;
}
.footer-nav a {
  color: var(--light-gray);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-sand);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--light-gray);
  font-size: 0.99rem;
}
.footer-contact span img {
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}

/**********************************************/
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -2px 16px 0 rgba(40,40,40,0.14);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2000;
  gap: 16px;
  min-width: 0;
  animation: cookiebannerin 0.4s cubic-bezier(.3,1.2,.3,1) 1;
}
@keyframes cookiebannerin { from {opacity: 0; transform: translateY(80px);} to {opacity: 1; transform: translateY(0);} }
.cookie-banner p {
  text-align: center;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  justify-content: center;
}
.cookie-btn {
  border-radius: 16px;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: var(--mid-gray);
  color: var(--white);
  font-weight: 600;
  transition: background 0.22s, color 0.22s;
}
.cookie-btn.accept {
  background: var(--black);
  color: var(--white);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-green);
}
.cookie-btn.reject {
  background: var(--light-gray);
  color: var(--black);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--brand-sand);
  color: var(--black);
}
.cookie-btn.settings {
  background: var(--white);
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-green);
  color: var(--white);
}

/**********************************************/
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(14,14,14,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.29s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 36px 0 rgba(25,82,70,0.13);
  max-width: 470px;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiemodalin .32s linear 1;
  position: relative;
}
@keyframes cookiemodalin { from {transform: scale(0.94);} to {transform: scale(1);} }
.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--dark-gray);
  position: absolute;
  top: 16px; right: 18px;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.21s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-green);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 0 6px 0;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-green);
  width: 18px; height: 18px; margin-right: 8px;
}
.cookie-category .category-description {
  color: var(--secondary);
  font-size: 0.98rem;
  font-weight: 400;
  margin-left: 28px;
}

/**********************************************/
/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 900px) {
  nav { gap: 0 18px; padding: 11px 0; }
  .features .feature-grid { gap: 18px; }
  .card-container { gap: 18px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 70px 0 36px 0; }
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .card-container, .content-grid, .testimonial-list {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .features .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .process ol li {
    flex-direction: column;
    padding: 24px 16px 20px 46px;
    min-width: unset;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 35px;
  }
  .testimonial-list {
    gap: 16px;
  }
  .cta { font-size: 1rem; padding: 14px 17px; }
  .location-map { margin-top: 20px; }
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
@media (max-width: 500px) {
  .container { padding-left: 5px; padding-right: 5px; }
  .hero { padding: 28px 0 15px 0; }
  .card, .testimonial-card {
    padding: 20px 10px 16px;
    min-width: 0;
  }
  .footer-contact { font-size: 0.93rem; }
}

/**********************************************/
/* UTILITIES & MICRO-INTERACTIONS */
.box-shadow-elevate {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.17);
}
.transition {
  transition: all 0.19s cubic-bezier(.36,.2,.17,1);
}
.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

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

/* Hide scrollbar in mobile nav for aesthetics */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
  max-height: 100vh;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/**********************************************/
/* OVERRIDES FOR COLOUR HIERARCHY & CONTRAST */
.hero,
.section.hero {
  color: var(--white);
  background: var(--black);
}
.hero h1, .hero .subheadline {
  color: var(--white);
}
.testimonial-card {
  background: var(--white);
  color: var(--primary);
}

/**********************************************/
/* END OF STYLES */
