/* RESET & NORMALIZE (MOBILE-FIRST) */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: #22292f; /* industrial_modern base */
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  color: #f6f4ef;
  background: #22292f;
  min-height: 100vh;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #c4a86b;
  text-decoration: none;
  transition: color .16s;
}
a:hover, a:focus {
  color: #fff;
}
ul, ol {
  padding-left: 1.2em;
  margin: 16px 0;
}
li {
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* COLOR VARIABLES AND COMPATIBLE FALLBACKS */
:root {
  --color-bg: #22292f;
  --color-bg-dark: #181c20;
  --color-bg-soft: #2a3138;
  --color-primary: #234957;
  --color-secondary: #c4a86b;
  --color-accent: #f6f4ef;
  --color-metal: #979ba0;
  --color-error: #c25238;
}

/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-size: 2.6rem;
  color: #f6f4ef;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 14px;
  /* Utilitarian industrial */
  text-shadow: 1px 1px 0 rgba(44,54,61,.12);
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: #c4a86b;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: .2px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #c4a86b;
  font-weight: 400;
}
.subheadline {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.1rem;
  color: #bfc3c6;
  margin-bottom: 1.2em;
  font-weight: 400;
}
p, .text-section, .faq-list p, .service-card p, .testimonial-card p {
  font-size: 1rem;
  color: #f6f4ef;
  margin-bottom: 1em;
}
strong { font-weight: 700; color: #c4a86b; }

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-soft);
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(34,49,62,.09);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #22292f;
  border: 1px solid #43474e;
  box-shadow: 0 2px 12px 0 rgba(24,28,32,.08);
  border-radius: 12px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, border 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(44,54,61,.22);
  border: 1.5px solid #c4a86b;
  z-index: 2;
}
.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;
  border-radius: 12px;
  background: #f6f4ef;
  color: #22292f;
  box-shadow: 0 2px 8px 0 rgba(89,92,92,.11);
  border-left: 5px solid #c4a86b;
  margin-bottom: 20px;
  min-width: 260px;
  transition: box-shadow .21s, border .14s;
}
.testimonial-card strong {
  color: #234957;
  font-weight: 700;
  font-size: 1.05em;
  letter-spacing: .4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HERO */
.hero {
  padding: 32px 24px 38px 24px;
  background: linear-gradient(120deg, rgba(34,73,87, .72) 82%, rgba(196,168,107, .16));
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(44,54,61,.15);
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 8px solid #c4a86b;
}

/* FEATURES / SERVICE CARDS / CALLS */
.features-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.feature, .service-card {
  background: #181c20;
  border-radius: 12px;
  border: 1.5px solid #43474e;
  padding: 28px 28px 22px 28px;
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 320px;
  box-shadow: 0 2px 10px rgba(44,54,61,.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .19s, border .18s;
  margin-bottom: 20px;
}
.feature img, .service-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: grayscale(37%) brightness(1.1);
}
.feature:hover,
.service-card:hover {
  border-color: #c4a86b;
  box-shadow: 0 8px 20px rgba(34,73,87, .16);
  z-index: 1;
}
.service-price {
  color: #c4a86b;
  font-weight: 700;
  font-size: 1.2em;
  margin-top: 7px;
  align-self: flex-end;
}


/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.093rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  padding: 13px 28px;
  line-height: 1.2;
  box-shadow: 0 2px 12px 0 rgba(44,54,61,.17);
  transition: background .22s, color .1s, box-shadow .19s, transform .18s;
}
.btn-primary {
  background: linear-gradient(102deg, #234957 89%, #435969 100%);
  color: #f6f4ef;
  border-bottom: 3px solid #c4a86b;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2d5e76;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 20px 0 rgba(34,73,87,.16);
}
.btn-secondary {
  background: #c4a86b;
  color: #22292f;
  border-bottom: 3px solid #234957;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #b3975a;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 5px 12px 0 rgba(196,168,107,.12);
}

/* NAVIGATION (HEADER) */
header {
  background: #181c20;
  border-bottom: 2.2px solid #292d33;
  position: sticky;
  top: 0;
  z-index: 1060;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 14px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: #c4a86b;
  font-weight: 500;
  letter-spacing: .11em;
  position: relative;
  padding-bottom: 4px;
  transition: color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  border-bottom: 2px solid #c4a86b;
}
header .btn-primary {
  margin-left: 18px;
}
header img { height: 55px; margin-right: 15px; }

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #234957;
  border-radius: 6px;
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  border: none;
  position: absolute;
  right: 21px;
  top: 22px;
  z-index: 1120;
  box-shadow: 0 2px 5px 0 rgba(22,32,37,.17);
  transition: background .18s, box-shadow .16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #c4a86b;
  color: #22292f;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #181c20;
  box-shadow: 0 12px 48px 0 rgba(34,73,87,.32);
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.77,0,.3,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: #234957;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 6px;
  border: none;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-top: 18px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #c4a86b;
  color: #22292f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f6f4ef;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding: 14px 0;
  border-bottom: 1.4px solid #43474e;
  transition: color .12s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #c4a86b;
  background: #181c20;
}
@media (min-width: 900px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 899px) {
  .main-nav, header .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}


/* FOOTER */
footer {
  background: #181c20;
  border-top: 2.2px solid #292d33;
  color: #f6f4ef;
  padding: 48px 0 24px 0;
  margin-top: 50px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-main img { height: 44px; margin-bottom: 5px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  font-size: 1rem;
}
.footer-nav a {
  color: #c4a86b;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .6px;
  transition: color .11s;
  padding-bottom: 1px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  border-bottom: 2px solid #c4a86b;
}
.footer-contact {
  color: #bfc3c6;
  font-size: .99rem;
  line-height: 1.78;
}
.footer-contact img { height: 18px; width: 18px; vertical-align: middle; margin-right: 5px; filter: grayscale(55%) brightness(2); }


/* LISTS, FAQ, VALUES, BENEFITS */
.tip-list, .values-list, .benefits-list, .services-preview {
  margin: 19px 0 27px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-list { display: flex; flex-direction: column; gap: 20px; }
.faq-item {
  background: #22292f;
  border-left: 4px solid #c4a86b;
  border-radius: 8px;
  padding: 17px 20px 15px 20px;
  color: #f6f4ef;
}

.values-list li, .benefits-list li, .services-preview li, .contact-info-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 1.03rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #bfc3c6;
}
.values-list img, .benefits-list img, .services-preview img { width: 30px; height: 30px; }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px 0;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: decimal-leading-zero;
  color: #f6f4ef;
}
.step-list li { margin-bottom: 0; }

/* TESTIMONIAL SLIDER */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  flex: 1 1 280px;
  max-width: 350px;
  min-width: 220px;
}

/* CALLOUTS & HIGHLIGHTS */
.callout, .mini-callout, .info-callout {
  background: #22292f;
  color: #f6f4ef;
  border-left: 5px solid #c4a86b;
  border-radius: 8px;
  padding: 17px 19px;
  margin: 22px 0 7px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  box-shadow: 0 2px 8px rgba(80,80,80,.07);
}
.info-callout {
  background: #f6f4ef;
  color: #234957;
  border-left: 5px solid #234957;
}
.mini-callout { font-size: .96rem; padding: 12px 14px; }

.cta {
  display: flex;
  gap: 20px;
  margin: 28px 0 0 0;
}

/* CARDS FLEXGROUP */
.routine-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.routine-examples > p {
  flex: 2 1 320px;
  color: #bfc3c6;
  margin: 0;
}

/* MAP SECTION ETC */
.map-section {
  background: #181c20;
  border: 1.2px solid #43474e;
  padding: 28px 20px;
  border-radius: 10px;
  color: #bfc3c6;
  box-shadow: 0 2px 10px rgba(44,54,61,.06);
}


/******** MODALS AND BANNER *********/

/* COOKIE CONSENT BANNER */
#cookie-consent-banner, .cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  width: 100vw;
  background: #181c20;
  color: #f6f4ef;
  border-top: 3px solid #c4a86b;
  box-shadow: 0 -6px 32px 0 rgba(44,54,61,.13);
  z-index: 2140;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  animation: cookieIn .42s cubic-bezier(.8,0,.24,1);
}
@keyframes cookieIn { from { transform: translateY(100%); opacity:0; } to { transform: translateY(0); opacity: 1; } }

.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 9px;
}
.cookie-consent-banner button, .cookie-modal button {
  padding: 11px 18px;
  border-radius: 6px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 0;
  transition: background .17s, color .14s, box-shadow .18s;
}
.cookie-consent-banner .accept {
  background: #c4a86b;
  color: #181c20;
  border-bottom: 2.5px solid #234957;
}
.cookie-consent-banner .accept:hover {
  background: #b3975a;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #234957;
  color: #f6f4ef;
  border-bottom: 2.5px solid #c4a86b;
}
.cookie-consent-banner .reject:hover {
  background: #181c20;
  color: #c4a86b;
}
.cookie-consent-banner .settings {
  background: #22292f;
  color: #c4a86b;
  border-bottom: 2.5px solid #c4a86b;
}
.cookie-consent-banner .settings:hover {
  background: #c4a86b;
  color: #22292f;
}

/* COOKIE MODAL */
#cookie-modal, .cookie-modal {
  display: none;
  position: fixed;
  z-index: 2250;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(39,46,52,.78);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open { display: flex; }
.cookie-modal-content {
  background: #181c20;
  color: #f6f4ef;
  border-radius: 13px;
  max-width: 380px;
  width: 96vw;
  padding: 38px 26px 22px 26px;
  box-shadow: 0 12px 36px 0 rgba(44,54,61,.32);
  position: relative;
  animation: modalOpen .42s cubic-bezier(.6,0,.22,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@keyframes modalOpen { from { transform: translateY(60px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-modal-content h3 {
  font-size: 1.25rem;
  color: #c4a86b;
  margin-bottom: 20px;
}
.cookie-modal-content .categories {
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cookie-modal-content .category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: #f6f4ef;
}
.cookie-modal-content .category input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #c4a86b;
  margin-right: 2px;
}
.cookie-modal-content .category.essential input[type=checkbox] {
  accent-color: #95b3c4;
}
.cookie-modal-content .category.essential label {
  color: #bbb;
  font-style: italic;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal-content .close-modal-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.7rem;
  background: #234957;
  color: #fff;
  border-radius: 6px;
  border: none;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background .11s, color .11s;
  z-index: 1;
}
.cookie-modal-content .close-modal-btn:hover {
  background: #b3975a;
  color: #22292f;
}

/********** RESPONSIVE **********/
@media (max-width: 1080px) {
  .container { max-width: 100vw; padding: 0 8px; }
}
@media (max-width: 900px) {
  .footer-main,
  .header-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-main { align-items: flex-start; }
}
@media (max-width: 768px) {
  .content-grid,
  .features-grid,
  .services-list,
  .testimonial-slider,
  .routine-examples {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 0;
  }
  .hero {
    padding: 23px 10px;
    margin-bottom: 24px;
  }
  .card, .feature, .service-card {
    padding: 19px 10px 17px 13px;
    max-width: 100%;
    min-width: unset;
  }
  .section { padding: 28px 6px; }
  .footer-main {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  h1, .hero h1 {
    font-size: 1.8rem;
  }
  h2 { font-size: 1.25rem; }
  .cta { flex-direction: column; gap: 12px; }
  .footer-contact { font-size: .95rem; }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 13px 0;
  }
}

/***** MICRO-INTERACTIONS & SHADOW DETAILS *****/
a, .main-nav a, .footer-nav a, .btn-primary, .btn-secondary, .mobile-menu-close, .mobile-menu-toggle {
  transition: color .17s, background .16s, box-shadow .15s, border .13s, transform .11s;
}
.card, .feature, .service-card, .testimonial-card, .faq-item { transition: box-shadow .22s, border .16s; }

/* Hide scroll for modal open */
body.modal-open { overflow: hidden; }
