/* RESET & BASE STYLES - SMOKY TRAIL STUDIO (INDUSTRIAL MODERN) */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #22262E;
  color: #F2ECDF;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #22262E;
}
img, picture, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding: 0;
}
a {
  color: #6FB299;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8fdebe;
  outline: none;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* TYPOGRAPHY - INDUSTRIAL MODERN AESTHETIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #EAF1F6;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-top: 24px;
  line-height: 1.22;
}
h3 {
  font-size: 1.3rem;
  color: #F2ECDF;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.1rem;
  font-weight: 400;
  color: #cdd7d2;
  margin-bottom: 24px;
  margin-top: -8px;
}
p {
  margin-bottom: 16px;
}

/* INDUSTRIAL MODERN SHADOWS & RADIUS */
.shadow {
  box-shadow: 0 4px 32px rgba(40,48,59,0.12), 0 1.5px 6px rgba(60,65,76,0.10);
}
.rounded {
  border-radius: 10px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #23272F;
  border-bottom: 1.5px solid #393e46;
  z-index: 20;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 0;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #EAF1F6;
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a.cta {
  background: #6FB299;
  color: #23272F;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(40,48,59,0.10);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.main-nav a.cta:hover {
  background: #47a07d;
  color: #fff;
}
.main-nav a:hover:not(.cta),
.main-nav a:focus:not(.cta) {
  background: #31343b;
  color: #6FB299;
}
.main-nav img {
  max-height: 32px;
}

/* HAMBURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #6FB299;
  cursor: pointer;
  margin-left: auto;
  padding: 8px 12px;
  z-index: 101;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-toggle:hover {
  color: #F2ECDF;
  background: #32363e;
  border-radius: 5px;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #23272F;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #F2ECDF;
  align-self: flex-end;
  margin: 24px 24px 6px 0;
  cursor: pointer;
  z-index: 202;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #6FB299;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 36px 36px 24px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #EAF1F6;
  padding: 12px 10px;
  border-radius: 5px;
  width: 100%;
  display: block;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #32363e;
  color: #6FB299;
}

/* Hide main nav on mobile, show burger */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* LAYOUT - FLEXBOX ONLY! */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23272F;
  border: 1.5px solid #353a43;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(40,48,59,0.13);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px 20px 24px;
  transition: box-shadow 0.28s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(111, 178, 153, 0.07);
  border-color: #6FB299;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: center;
  gap: 20px;
  background: #F2ECDF;
  color: #23272F !important;
  border: 1px solid #b5b9bc;
  border-radius: 12px;
  box-shadow: 0 2.5px 12px rgba(60,65,76,0.15);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
  word-break: break-word;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px rgba(111, 178, 153, 0.12);
  border-color: #6FB299;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE & LIST GRIDS (INDEX/SERVICES/WORKSHOPS) */
.feature-grid, .service-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.feature-grid > li, .service-list > li, .workshop-list > li {
  background: #23272F;
  color: #F2ECDF;
  border: 1.5px solid #373b40;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(40,48,59,0.08);
  padding: 32px 24px 22px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, border-color 0.18s;
}
.feature-grid li:hover, .service-list li:hover, .workshop-list li:hover {
  box-shadow: 0 8px 30px rgba(111, 178, 153, 0.10);
  border-color: #6FB299;
}
.feature-grid img, .service-list img, .workshop-list img {
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  filter: grayscale(1) contrast(1.35);
}
.feature-grid strong, .service-list .service-price, .workshop-list strong {
  color: #6FB299;
  font-size: 1.01em;
  font-weight: 700;
  margin-top: 8px;
}

.process-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  width: 100%;
  margin-top: 10px;
}
.process-list li {
  background: #22262E;
  color: #F2ECDF;
  border: 1.5px solid #364044;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(40,48,59,0.10);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.process-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
  filter: grayscale(1) contrast(1.2);
}
.process-list li:hover {
  box-shadow: 0 7px 26px rgba(111, 178, 153, 0.09);
  border-color: #6FB299;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-top: 12px;
}
.team-member {
  background: #22262E;
  color: #F2ECDF;
  border: 1.5px solid #33383f;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(40,48,59,0.09);
  min-width: 230px;
  flex: 1 1 235px;
  max-width: 280px;
  padding: 30px 18px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, border-color 0.14s;
}
.team-member:hover {
  box-shadow: 0 6px 24px rgba(111, 178, 153, 0.08);
  border-color: #6FB299;
}

.project-overview {
  background: #23272F;
  border: 1.5px solid #393e46;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(40,48,59,0.10);
  padding: 27px 18px 13px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-overview {
  background: #23272F;
  color: #6FB299;
  padding: 18px 22px;
  border-radius: 8px;
  font-size: 1.08em;
  text-align: center;
  border: 1.5px solid #33383f;
  margin-top: 8px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.text-section ul {
  margin-left: 12px;
  list-style: disc inside;
  color: #AEB6BA;
}
.text-section ul li {
  margin-bottom: 8px;
  color: #C8D5CC;
  font-size: 1em;
}
.text-section strong {
  color: #6FB299;
  font-weight: 700;
}

/* HERO SECTIONS */
.hero {
  background: #23272F url('../assets/industrial-bg.jpg') center/cover no-repeat;
  padding: 56px 0 36px 0;
  border-bottom: 1.5px solid #393e46;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 740px;
  gap: 18px;
}
.hero h1 {
  font-size: 2.3rem;
  color: #F2ECDF;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(40,48,59,0.10);
}
.hero .subheadline {
  color: #6FB299;
  font-size: 1.17rem;
  font-weight: 500;
}

/* BUTTONS / CTA */
.cta,
button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6FB299;
  color: #23272F;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 13px 26px;
  font-size: 1.09rem;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  cursor: pointer;
  box-shadow: 0 3px 15px rgba(111,178,153,0.13);
  margin-top: 12px;
  margin-bottom: 4px;
  transition: background 0.17s, color 0.15s, box-shadow 0.22s, transform 0.15s;
}
.cta:hover, .cta:focus, button.cta:hover, button.cta:focus {
  background: #47a07d;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 28px rgba(111,178,153,0.20);
}

button, .btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 6px 8px 6px 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.16s;
  background: #353a43;
  color: #F2ECDF;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: #6FB299;
  color: #22262E;
  box-shadow: 0 6px 18px rgba(111,178,153,0.16);
}

/* FORMS (if present) */
input, textarea, select {
  background: #23272F;
  color: #EAF1F6;
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1.5px solid #393e46;
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 1em;
  transition: border-color 0.17s, background 0.13s;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #6FB299;
}

/* FOOTER */
footer {
  width: 100%;
  background: #23272F;
  border-top: 1.5px solid #393e46;
  margin-top: 40px;
  padding: 16px 0 12px 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #C8D5CC;
  background: none;
  font-size: 1em;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.015em;
  border-radius: 5px;
  padding: 5px 12px;
  margin: 0 2px;
  transition: background 0.16s, color 0.14s;
}
.footer-nav a.cta {
  background: #6FB299;
  color: #23272F;
  font-weight: 700;
  margin-left: 18px;
}
.footer-nav a.cta:hover {
  background: #47a07d;
  color: #fff;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #2f333a;
  color: #6FB299;
}

/* UTILITY + MISC */
.muted { color: #AEB6BA; }

.address-section, .opening-hours, .map-embed {
  background: #23272F;
  border: 1px solid #292d32;
  padding: 18px 18px 10px 22px;
  border-radius: 8px;
  color: #C8D5CC;
  margin-bottom: 16px;
}

em, i {
  color: #6FB299 !important;
  font-style: italic;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 9000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  background: #23272F;
  color: #F2ECDF;
  box-shadow: 0 -3px 20px rgba(40,48,59,0.17);
  border-top: 2px solid #6FB299;
  padding: 22px 26px 18px 26px;
  animation: cookieSlideIn 0.44s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #F2ECDF;
  font-size: 1rem;
  flex: 1 1 0;
  margin-right: 30px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner .cookie-btn {
  background: #353a43;
  color: #F2ECDF;
  border-radius: 7px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border: 1.5px solid #364044;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.19s, color 0.17s, box-shadow 0.14s;
}
.cookie-banner .cookie-btn.accept {
  background: #6FB299;
  color: #23272F;
  border: 1.5px solid #6FB299;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #47a07d;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #b44343;
  color: #fff;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #7e2828;
}
.cookie-banner .cookie-btn.settings {
  background: #353a43;
  color: #F2ECDF;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #2f333a;
  color: #6FB299;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,48,59,0.86);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.27s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #23272F;
  color: #F2ECDF;
  padding: 38px 32px 28px 32px;
  border-radius: 16px;
  box-shadow: 0 7px 36px rgba(40,48,59,0.25);
  width: 92vw;
  max-width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  color: #6FB299;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal-content .toggle {
  margin-left: auto;
}
.cookie-modal-content .category-desc {
  font-size: 0.96em;
  color: #AEB6BA;
  margin-bottom: 12px;
}
.cookie-modal-content button {
  align-self: end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  background: none;
  border: none;
  color: #F2ECDF;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover {
  color: #6FB299;
}

/* INPUT TOGGLE SWITCH (COOKIE CATEGORIES) */
.toggle {
  width: 38px;
  height: 21px;
  background: #22262E;
  border-radius: 13px;
  border: 1.2px solid #393e46;
  position: relative;
  cursor: pointer;
  transition: background 0.19s, border-color 0.15s;
}
.toggle input {
  display: none;
}
.toggle .slider {
  position: absolute;
  width: 17px;
  height: 17px;
  background: #6FB299;
  border-radius: 50%;
  top: 1.5px;
  left: 2px;
  transition: left 0.18s, background 0.16s;
}
.toggle input:checked + .slider {
  left: 18px;
  background: #47a07d;
}
.toggle[aria-disabled="true"], .toggle[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* MEDIA QUERIES - RESPONSIVE LAYOUTS*/
@media (max-width: 1200px) {
  .feature-grid li, .service-list li, .workshop-list li, .team-member {
    max-width: 44vw;
  }
  .process-list li {
    max-width: 40vw;
  }
}
@media (max-width: 900px) {
  .feature-grid li, .service-list li, .workshop-list li, .team-member {
    min-width: 210px;
    max-width: 98vw;
    flex-basis: 98vw;
  }
  .process-list li {
    min-width: 160px;
    max-width: 98vw;
    flex-basis: 98vw;
  }
  .project-overview {
    padding: 20px 12px 11px 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 7px;
  }
  .card-container, .content-grid, .team-grid, .feature-grid, .process-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .hero {
    min-height: 168px;
    padding: 40px 0 24px 0;
  }
  .hero .content-wrapper {
    padding: 0 5px;
  }
  .testimonial-card {
    padding: 16px;
  }
  .price-overview {
    padding: 11px 8px;
  }
  .mobile-nav {
    padding: 30px 10px 12px 14px;
    gap: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 10px 17px 10px;
    font-size: 0.97em;
  }
  .cookie-banner p {
    margin-right: 0;
  }
}
@media (max-width: 540px) {
  .hero h1 {
    font-size: 1.37rem;
  }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  .feature-grid li, .service-list li, .workshop-list li, .team-member, .process-list li {
    min-width: 82vw;
    max-width: 99vw;
    padding: 16px 7px 13px 9px;
  }
  .address-section, .opening-hours, .map-embed {
    padding: 11px 5px 7px 7px;
  }
  footer, .footer-nav { font-size: 0.97em; }
}

/* ACCESSIBILITY & SELECTIONS */
::selection {
  background: #6FB299;
  color: #23272F;
}
::-webkit-input-placeholder { color: #AEB6BA; }
::-moz-placeholder { color: #AEB6BA; }
:-ms-input-placeholder { color: #AEB6BA; }
::placeholder { color: #AEB6BA; }

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .feature-grid > li, .service-list > li, .workshop-list > li, .team-member, .project-overview, .testimonial-card {
  transition: box-shadow 0.19s, border-color 0.13s, transform 0.18s;
}
.card:hover, .feature-grid li:hover, .service-list li:hover, .workshop-list li:hover, .team-member:hover, .project-overview:hover {
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card:hover {
  transform: scale(1.013);
}

/* INDUSTRIAL ACCENTS - BORDERS, TONES, URBAN DETAIL */
.card, .feature-grid > li, .service-list > li, .workshop-list > li, .team-member, .project-overview {
  border-left: 2.5px solid #6FB299;
}

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

/* END OF STYLE.CSS */
