:root {
  --mwc-gold: #dc9814;
  --mwc-green: #3bb54a;
  --mwc-green-dark: #009245;
  --mwc-product-btn: #b8dcb8;
  --mwc-product-btn-hover: #a3d0a3;
  --mwc-link: #1e68c4;
  --mwc-text: #444;
  --mwc-heading: #111;
  --mwc-muted: #323232;
  --mwc-border: #eee;
  --mwc-input-border: #e4e4e7;
  --mwc-input-border-focus: #d4d4d8;
  --wc-form-border-color: var(--mwc-input-border);
  --mwc-footer: #111;
  --mwc-max: 1170px;
  --mwc-pad: 2.617924em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mwc-text);
  background: #fff;
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.mwc-service-form__field input,
.mwc-service-form__field textarea,
.mwc-service-form__field input[type="file"],
.mwc-shop-filter__input,
.mwc-shop-filter__select,
.mwc-sorting-map-app__search {
  border-color: var(--mwc-input-border);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus,
.mwc-service-form__field input:focus,
.mwc-service-form__field textarea:focus,
.mwc-service-form__field input[type="file"]:focus,
.mwc-sorting-map-app__search:focus {
  border-color: var(--mwc-input-border-focus);
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.05);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--mwc-link);
  text-decoration: none;
}

a:hover {
  color: var(--mwc-heading);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  color: var(--mwc-heading);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.625rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.375rem, 1rem + 1.2vw, 1.875rem); letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1rem; }

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.col-full {
  width: 100%;
  max-width: var(--mwc-max);
  margin: 0 auto;
  padding: 0 1em;
}

@media (min-width: 993px) {
  .col-full {
    padding: 0 var(--mwc-pad);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.82em 1.42em;
  border: 0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn--primary {
  background: var(--mwc-green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--mwc-green-dark);
  color: #fff;
}

.btn--outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn--cart {
  width: 100%;
  margin-top: auto;
  background: var(--mwc-green);
  color: #fff;
}

.btn--cart:hover {
  background: var(--mwc-green-dark);
  color: #fff;
}

.btn--lg {
  padding: 1em 1.75em;
  font-size: 1rem;
}

.btn--cta-light {
  background: #fff;
  color: #111;
}

.btn--cta-light:hover {
  background: #f2f2f2;
  color: #111;
}

.btn--dark {
  background: #323232;
  color: #fff;
}

.btn--dark:hover {
  background: #111;
  color: #fff;
}

/* Top bar */
.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--mwc-topbar-bg, rgba(17, 17, 17, 0.88));
  font-size: 14px;
}

.top-bar__contact {
  margin: 0;
  padding: 0.35rem 0;
  text-align: center;
  color: var(--mwc-topbar-text, #fff);
}

.top-bar__contact a {
  color: inherit;
}

.top-bar__contact a:hover {
  color: var(--mwc-gold);
}

/* Header */
.mwc-site-header {
  position: relative;
  z-index: 150;
}

.header-4-container {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--mwc-border);
}

.header-4-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 58px;
}

@media (min-width: 993px) {
  .header-4-inner {
    min-height: 68px;
  }
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.custom-logo-link,
.custom-logo-link img,
.custom-logo {
  display: block;
  height: 44px;
  width: auto;
  max-height: 44px;
  opacity: 1;
  filter: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  position: relative;
}

.menu-toggle .bar:nth-child(1) { transform: translateY(-6px); }
.menu-toggle .bar:nth-child(3) { transform: translateY(6px); }

.menu-toggle .bar-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #111;
}

.header-toolbar {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
  gap: 0;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mwc-text);
  cursor: pointer;
  transition: color 0.2s ease;
}

.search-trigger:hover,
body.search-is-open .search-trigger {
  color: var(--mwc-gold);
}

/* Search overlay */
body.search-is-open {
  overflow: hidden;
}

.mwc-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 6.5rem 1rem 1rem;
  pointer-events: none;
  visibility: hidden;
}

.mwc-search-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mwc-search-overlay[hidden] {
  display: flex;
}

.mwc-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mwc-search-overlay__dialog {
  position: relative;
  width: min(640px, 100%);
  padding: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(8px);
  transition: transform 0.2s ease;
}

.mwc-search-overlay.is-open .mwc-search-overlay__dialog {
  transform: translateY(0);
}

.mwc-search-overlay__bar {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mwc-search-overlay__main {
  flex: 1;
  min-width: 0;
}

.mwc-search-overlay__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-top: 4px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--mwc-heading);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.mwc-search-overlay__close:hover {
  color: var(--mwc-gold);
  transform: scale(1.05);
}

.mwc-search-overlay__input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 1rem;
  border: 0;
  border-radius: 0.35rem;
  background: #fff;
  font: inherit;
  font-size: 1.05rem;
  color: var(--mwc-heading);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.mwc-search-overlay__input:focus {
  outline: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.mwc-search-results {
  margin: 0.75rem 0 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: min(50vh, 360px);
  overflow-y: auto;
  background: #fff;
  border-radius: 0.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mwc-search-results:empty {
  display: none;
}

.mwc-search-results__item {
  margin: 0;
}

.mwc-search-results__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--mwc-heading);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  overflow: visible;
}

.mwc-search-results__link:hover {
  color: var(--mwc-heading);
}

.mwc-search-results__link:hover .mwc-search-results__title {
  color: var(--mwc-gold);
}

.mwc-search-results__link img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #f3f3f3;
}

.mwc-search-results__body {
  flex: 1;
  min-width: 0;
}

.mwc-search-results__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mwc-search-results__empty {
  padding: 0.65rem 1rem;
  font-size: 14px;
  color: #777;
}

.site-header-cart {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid var(--mwc-border);
}

.site-header-cart .cart-contents,
.site-header-cart .mwc-header-cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mwc-muted);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.site-header-cart .cart-contents:hover,
.site-header-cart .mwc-header-cart-toggle:hover {
  color: var(--mwc-heading);
}

.site-header-cart .cart-contents:focus-visible,
.site-header-cart .mwc-header-cart-toggle:focus-visible {
  outline: 2px solid var(--mwc-green);
  outline-offset: 2px;
}

.site-header-cart .amount {
  font-size: 15px;
  white-space: nowrap;
}

.site-header-cart .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  float: none;
  min-width: 28px;
  height: 28px;
  padding: 0 4px;
  border: 1px solid var(--mwc-gold);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  color: var(--mwc-gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.7px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.site-header-cart .count::after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 10px;
  height: 6px;
  margin-bottom: 1px;
  margin-left: -6px;
  border: 1px solid var(--mwc-gold);
  border-bottom: 0;
  border-top-left-radius: 99px;
  border-top-right-radius: 99px;
  content: "";
  pointer-events: none;
}

.site-header-cart .cart-contents:hover .count,
.site-header-cart .mwc-header-cart-toggle:hover .count {
  color: #fff;
  background-color: var(--mwc-gold);
}

.site-header-cart .cart-contents:hover .count::after,
.site-header-cart .mwc-header-cart-toggle:hover .count::after {
  border-color: var(--mwc-gold);
}

.site-header-cart .cart-icon-wrap,
.site-header-cart .cart-icon {
  display: none;
}

.site-header-cart .cart-contents::before,
.site-header-cart .mwc-header-cart-toggle::before {
  content: none;
  display: none;
}

/* Cart drawer */
body.cart-is-open {
  touch-action: none;
}

.mwc-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
}

.mwc-cart-drawer[hidden] {
  display: none;
}

.mwc-cart-drawer.is-open,
.mwc-cart-drawer.is-closing {
  pointer-events: auto;
}

.mwc-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
  opacity: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.mwc-cart-drawer.is-open .mwc-cart-drawer__backdrop {
  opacity: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.mwc-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  height: 100%;
  background: #fff;
  box-shadow: none;
  transform: translate3d(105%, 0, 0);
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.mwc-cart-drawer.is-open .mwc-cart-drawer__panel {
  transform: translate3d(0, 0, 0);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.14);
}

.mwc-cart-drawer__header,
.mwc-cart-drawer__inner {
  opacity: 0;
  transform: translateX(16px);
  transition:
    opacity 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.mwc-cart-drawer.is-open .mwc-cart-drawer__header {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.mwc-cart-drawer.is-open .mwc-cart-drawer__inner {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.16s;
}

.mwc-cart-drawer.is-closing .mwc-cart-drawer__header,
.mwc-cart-drawer.is-closing .mwc-cart-drawer__inner {
  opacity: 0;
  transform: translateX(12px);
  transition-delay: 0s;
  transition-duration: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .mwc-cart-drawer__backdrop,
  .mwc-cart-drawer__panel,
  .mwc-cart-drawer__header,
  .mwc-cart-drawer__inner {
    transition: none;
  }
}

.mwc-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--mwc-border);
}

.mwc-cart-drawer__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--mwc-heading);
}

.mwc-cart-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mwc-heading);
  cursor: pointer;
}

.mwc-cart-drawer__close:hover,
.mwc-cart-drawer__close:focus-visible {
  color: var(--mwc-green);
  outline: none;
}

.mwc-cart-drawer__inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.mwc-cart-drawer__items-wrap {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.mwc-cart-drawer__items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-cart-drawer__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 72px;
  gap: 0.85rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--mwc-border);
}

.mwc-cart-drawer__remove {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.15rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #888;
  cursor: pointer;
}

.mwc-cart-drawer__remove:hover,
.mwc-cart-drawer__remove:focus-visible {
  color: #c0392b;
  outline: none;
}

.mwc-cart-drawer__item-body {
  min-width: 0;
}

.mwc-cart-drawer__item-title {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--mwc-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

a.mwc-cart-drawer__item-title:hover {
  color: var(--mwc-green);
}

.mwc-cart-drawer__item-meta {
  margin-bottom: 0.45rem;
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.mwc-cart-drawer__item-meta dl.variation {
  margin: 0;
}

.mwc-cart-drawer__item-meta dl.variation dt,
.mwc-cart-drawer__item-meta dl.variation dd {
  display: inline;
  margin: 0;
}

.mwc-cart-drawer__item-meta dl.variation dt {
  font-weight: 400;
}

.mwc-cart-drawer__item-meta dl.variation dd p {
  margin: 0;
}

.mwc-cart-drawer__item-price {
  color: var(--mwc-heading);
  font-size: 0.9375rem;
  font-weight: 700;
}

.mwc-cart-drawer__item-image {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f5f5;
}

.mwc-cart-drawer__item-image img,
.mwc-cart-drawer__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mwc-cart-drawer__empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  color: #666;
  text-align: center;
}

.mwc-cart-drawer__footer {
  flex-shrink: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--mwc-border);
  background: #fff;
}

.mwc-cart-drawer__total {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mwc-cart-drawer__total-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mwc-heading);
}

.mwc-cart-drawer__total-value {
  text-align: right;
}

.mwc-cart-drawer__total-value strong {
  display: block;
  color: var(--mwc-heading);
  font-size: 1rem;
}

.mwc-cart-drawer__total-tax {
  display: block;
  margin-top: 0.15rem;
  color: #666;
  font-size: 0.8125rem;
  font-weight: 400;
}

.mwc-cart-drawer__actions {
  display: grid;
  gap: 0.75rem;
}

.mwc-cart-drawer__view-cart,
.mwc-cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.mwc-cart-drawer__view-cart {
  border: 1px solid var(--mwc-input-border);
  background: #fff;
  color: var(--mwc-heading);
}

.mwc-cart-drawer__view-cart:hover,
.mwc-cart-drawer__view-cart:focus-visible {
  border-color: #bbb;
  color: var(--mwc-heading);
}

.mwc-cart-drawer__checkout {
  gap: 0.5rem;
  border: 0;
  background: var(--mwc-green);
  color: #fff;
}

.mwc-cart-drawer__checkout:hover,
.mwc-cart-drawer__checkout:focus-visible {
  background: var(--mwc-green-dark);
  color: #fff;
}

.mwc-cart-drawer__checkout-icon {
  flex-shrink: 0;
}

/* Navigation */
.main-navigation {
  flex: 1;
  min-width: 0;
}

.main-navigation .menu {
  display: none;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation.is-open .menu {
  display: flex;
  flex-direction: column;
  padding: 1rem 0 1.25rem;
}

@media (min-width: 993px) {
  .menu-toggle {
    display: none;
  }

  .main-navigation .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .main-navigation.is-open .menu {
    flex-direction: row;
    padding: 0;
  }
}

.main-navigation .menu > .menu-item {
  position: relative;
}

.main-navigation .menu > .menu-item > a {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.5rem;
  color: var(--mwc-text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.main-navigation .menu > .menu-item > a:hover,
.main-navigation .menu > .current-menu-item > a {
  color: var(--mwc-gold);
}

.main-navigation .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}

.main-navigation .sub-menu {
  display: none;
  margin: 0;
  padding: 0.75rem 0 0.75rem 1rem;
  list-style: none;
}

.main-navigation .menu-item-has-children.is-open > .sub-menu {
  display: block;
}

@media (min-width: 993px) {
  .main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 30;
    min-width: 240px;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
  }

  .main-navigation .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

.main-navigation .sub-menu a {
  display: block;
  padding: 0.35rem 0.5rem;
  color: var(--mwc-muted);
  font-size: 14px;
  text-decoration: none;
}

.main-navigation .sub-menu a:hover {
  color: var(--mwc-gold);
}

@media (max-width: 992px) {
  .header-4-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .header-toolbar {
    flex-basis: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
  }

  .header-utils {
    position: absolute;
    top: 0.65rem;
    right: 1rem;
    margin-left: 0;
  }

  .site-header-cart {
    padding-left: 0.75rem;
    margin-left: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mwc-search-overlay__dialog {
    transition: none;
    transform: none;
  }

  .mwc-hero__slide {
    transition: none;
  }
}

/* Hero */
.mwc-hero {
  position: relative;
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.mwc-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mwc-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mwc-hero__slideshow {
  position: absolute;
  inset: 0;
}

.mwc-hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.mwc-hero__slide.is-active {
  opacity: 1;
}

.mwc-hero--video,
.mwc-hero--slideshow {
  background-image: none !important;
}

.mwc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}

.mwc-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 9rem;
  padding-bottom: 4rem;
}

/* Front page: header overlays hero */
body.home .mwc-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

body.home .header-4-container {
  background: #fff;
  border-bottom: 1px solid var(--mwc-border);
}

body.home .mwc-hero__inner {
  padding-top: 8.5rem;
}

@media (max-width: 992px) {
  body.home .mwc-hero__inner {
    padding-top: 7.5rem;
  }
}

.mwc-hero__content {
  max-width: 720px;
}

.mwc-hero h1,
.mwc-hero h2 {
  color: #fff;
}

.mwc-hero h2 {
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
}

.mwc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mwc-dropdown {
  position: relative;
}

.mwc-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  padding: 0.5rem 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mwc-dropdown.is-open .mwc-dropdown__menu {
  display: block;
}

@media (hover: hover) {
  .mwc-dropdown:hover .mwc-dropdown__menu,
  .mwc-dropdown:focus-within .mwc-dropdown__menu {
    display: block;
  }
}

.mwc-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.mwc-dropdown__menu a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--mwc-muted);
  font-size: 14px;
}

.mwc-dropdown__menu a:hover {
  color: var(--mwc-gold);
  background: #fafafa;
}

/* Sections */
.mwc-section {
  padding: 3rem 0;
}

.mwc-section__title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.mwc-section__subtitle {
  text-align: center;
  color: var(--mwc-text);
  margin-bottom: 2rem;
}

/* Feature cards */
.mwc-features__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .mwc-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.image-feature {
  margin: 0;
}

.image-feature__link {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.image-feature__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #222;
}

.image-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-feature__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.image-feature__hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 181, 74, 0.88);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.image-feature__hover-text {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.image-feature__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: 1.75rem 1.5rem;
  pointer-events: none;
}

.image-feature__title {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.image-feature__price {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.image-feature__link:hover .image-feature__media img,
.image-feature__link:focus-visible .image-feature__media img {
  transform: scale(1.08);
}

.image-feature__link:hover .image-feature__hover,
.image-feature__link:focus-visible .image-feature__hover {
  opacity: 1;
}

/* Products */
.mwc-products .products {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 600px) {
  .mwc-products .products.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 993px) {
  .mwc-products .products.columns-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
  }

  .mwc-products .products .product {
    padding-bottom: 2.5rem;
  }
}

.mwc-products .products .product {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  float: none;
  clear: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce .mwc-products .products::before,
.woocommerce .mwc-products .products::after,
.woocommerce-page .mwc-products .products::before,
.woocommerce-page .mwc-products .products::after {
  content: none;
  display: none;
}

.woocommerce .mwc-products .products .product,
.woocommerce-page .mwc-products .products .product {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}

.mwc-products .product__image-link {
  display: block;
  width: 100%;
  overflow: hidden;
}

.mwc-products .product__image-link img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f8f8f8;
  transition: transform 0.35s ease;
}

.mwc-products .product:hover .product__image-link img {
  transform: scale(1.03);
}

.mwc-products .product__body {
  --product-btn-height: 44px;
  position: relative;
  flex: 1;
  padding-top: 0.85rem;
  padding-bottom: calc(var(--product-btn-height) + 0.75rem);
  overflow: hidden;
}

.mwc-products .product__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.mwc-products .product:hover .product__info,
.mwc-products .product:focus-within .product__info {
  transform: translateY(-10px);
}

.mwc-products .product__category {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #999;
}

.mwc-products .product__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.mwc-products .product__title a {
  color: var(--mwc-heading);
  text-decoration: none;
}

.mwc-products .product__title a:hover {
  color: var(--mwc-gold);
}

.mwc-products .price {
  display: block;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.mwc-products .price .woocommerce-Price-amount {
  color: var(--mwc-heading);
}

.mwc-products .price small,
.mwc-products .price .woocommerce-Price-suffix {
  color: #777;
  font-size: 0.92em;
  font-weight: 400;
}

.mwc-products .product__actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.mwc-products .product:hover .product__actions,
.mwc-products .product:focus-within .product__actions {
  transform: translateY(0);
}

.mwc-products .product__actions .product__cart-btn,
.mwc-products .product__actions a.button,
.mwc-products .product__actions .add_to_cart_button {
  display: block;
  width: 100%;
  min-height: var(--product-btn-height);
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 4px;
  background: var(--mwc-green);
  color: #fff !important;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mwc-products .product__actions .product__cart-btn:hover,
.mwc-products .product__actions a.button:hover,
.mwc-products .product__actions .add_to_cart_button:hover {
  background: var(--mwc-green-dark);
  color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  .mwc-products .product__info,
  .mwc-products .product__actions,
  .mwc-products .product__image-link img {
    transition: none;
  }

  .mwc-products .product:hover .product__info,
  .mwc-products .product:focus-within .product__info,
  .mwc-products .product:hover .product__actions,
  .mwc-products .product:focus-within .product__actions {
    transform: none;
  }

  .mwc-products .product__actions {
    position: static;
    transform: none;
    margin-top: 0.75rem;
  }
}

.mwc-products__empty {
  margin: 0;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #777;
  background: #f8f8f8;
  border: 1px dashed #ddd;
  border-radius: 4px;
}

/* Why us */
.mwc-why {
  display: grid;
}

@media (min-width: 993px) {
  .mwc-why {
    grid-template-columns: 1fr 1fr;
  }
}

.mwc-why__panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 993px) {
  .mwc-why__panel {
    min-height: 640px;
  }
}

.mwc-why__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mwc-why__panel--left {
  color: #fff;
}

.mwc-why__panel--left .mwc-why__overlay {
  background: rgba(0, 0, 0, 0.62);
}

.mwc-why__panel--right {
  color: #111;
}

.mwc-why__panel--right .mwc-why__overlay {
  background: rgba(220, 152, 20, 0.9);
}

.mwc-why__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  padding: 3.5rem 1.75rem;
  margin: 0;
}

@media (min-width: 768px) {
  .mwc-why__content {
    padding: 4.5rem 2.75rem;
  }
}

@media (min-width: 993px) {
  .mwc-why__content {
    padding: 5rem 3.5rem 5rem 4rem;
  }
}

.mwc-why__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.mwc-why__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.65rem, 1.2rem + 1.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.mwc-why__panel--left .mwc-why__title,
.mwc-why__panel--left .mwc-why__text {
  color: #fff;
}

.mwc-why__panel--right .mwc-why__title,
.mwc-why__panel--right .mwc-why__text {
  color: #111;
}

.mwc-why__text {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.65;
}

.mwc-why__cta {
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mwc-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-benefits li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: #111;
}

.mwc-benefits li:last-child {
  margin-bottom: 0;
}

.mwc-benefits__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 22px;
  color: #111;
}

/* Portfolio slider */
.mwc-portfolio-slider {
  position: relative;
  padding: 0 2.75rem;
  margin-top: 1.5rem;
}

.mwc-portfolio-slider__viewport {
  overflow: hidden;
}

.mwc-portfolio-slider__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.mwc-portfolio-slide {
  flex: 0 0 calc(100% / 2);
  min-width: 0;
  padding: 0 0.5rem;
}

@media (min-width: 600px) {
  .mwc-portfolio-slide {
    flex-basis: calc(100% / 3);
  }
}

@media (min-width: 900px) {
  .mwc-portfolio-slide {
    flex-basis: calc(100% / 4);
  }
}

@media (min-width: 1100px) {
  .mwc-portfolio-slide {
    flex-basis: calc(100% / 6);
  }
}

.mwc-portfolio-slide__inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #222;
}

.mwc-portfolio-slide__inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mwc-portfolio-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.35s ease;
  pointer-events: none;
}

.mwc-portfolio-slide__text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.mwc-portfolio-slide__text p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #fff;
  text-align: center;
}

.mwc-portfolio-slide__inner:hover img,
.mwc-portfolio-slide__inner:focus-within img {
  transform: scale(1.06);
}

.mwc-portfolio-slide__inner:hover .mwc-portfolio-slide__overlay,
.mwc-portfolio-slide__inner:focus-within .mwc-portfolio-slide__overlay {
  background: rgba(0, 0, 0, 0.72);
}

.mwc-portfolio-slide__inner:hover .mwc-portfolio-slide__text,
.mwc-portfolio-slide__inner:focus-within .mwc-portfolio-slide__text {
  opacity: 1;
}

.mwc-portfolio-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--mwc-heading);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.mwc-portfolio-slider__nav:hover {
  color: var(--mwc-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.mwc-portfolio-slider__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.mwc-portfolio-slider__nav--prev {
  left: 0;
}

.mwc-portfolio-slider__nav--next {
  right: 0;
}

.mwc-portfolio-slider.is-static .mwc-portfolio-slider__nav {
  display: none;
}

/* CTA potholes */
.mwc-cta-potholes {
  background: #1c1c1c;
  color: #fff;
  padding: 4rem 0;
}

@media (min-width: 993px) {
  .mwc-cta-potholes {
    padding: 5.5rem 0;
  }
}

.mwc-cta-potholes__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 993px) {
  .mwc-cta-potholes__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.mwc-cta-potholes__content {
  max-width: 520px;
}

.mwc-cta-potholes h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
}

.mwc-cta-potholes__subtitle {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
  color: #fff;
}

.mwc-cta-potholes__media {
  display: flex;
  justify-content: center;
}

@media (min-width: 993px) {
  .mwc-cta-potholes__media {
    justify-content: flex-end;
  }
}

.mwc-cta-potholes__media img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Partners */
.mwc-partners__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.mwc-partners__scroll::-webkit-scrollbar {
  height: 6px;
}

.mwc-partners__scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.mwc-partners__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: safe center;
  width: max-content;
  min-width: 100%;
  margin: 0 auto;
  padding: 0.25rem 0.5rem 1rem;
}

.mwc-partners__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 160px;
}

.mwc-partners__item img {
  max-height: 56px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.mwc-partners__item img:hover {
  filter: none;
  opacity: 1;
}

/* Footer */
.site-footer {
  background: var(--mwc-footer);
  color: #ccc;
  padding: 3rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer h5,
.site-footer h6,
.site-footer .widget-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer h5 {
  font-size: 1.125rem;
  text-transform: none;
  letter-spacing: 0;
}

.site-footer a {
  color: #999;
}

.site-footer a:hover {
  color: #fff;
}

.footer-menu li {
  margin-bottom: 0.45rem;
}

.site-footer__hours {
  color: #ccc;
  font-size: 0.95rem;
}

.copyright {
  background: #0a0a0a;
  color: #777;
  padding: 1rem 0;
  font-size: 0.875rem;
  text-align: center;
}

.copyright p {
  margin: 0;
}

/* Blog fallback */
.site-main:not(.mwc-home) {
  max-width: var(--mwc-max);
  margin: 0 auto;
  padding: 2rem 1em 4rem;
}

@media (min-width: 993px) {
  .site-main:not(.mwc-home) {
    padding-left: var(--mwc-pad);
    padding-right: var(--mwc-pad);
  }
}

.site-main:not(.mwc-home) article {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--mwc-border);
}

.site-main:not(.mwc-home) .entry-title a {
  color: var(--mwc-heading);
}

.site-main:not(.mwc-home) .entry-title a:hover {
  color: var(--mwc-gold);
}

/* Interior pages */
.mwc-page.site-main {
  max-width: none;
  padding: 0;
}

.mwc-page-hero {
  background: #fff;
}

.mwc-page-hero__inner {
  padding: 2rem 0 1.5rem;
}

.mwc-page-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.mwc-page-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  color: #9a9a9a;
}

.mwc-page-breadcrumb__item + .mwc-page-breadcrumb__item::before {
  content: "/";
  margin: 0 0.45rem;
  color: #c4c4c4;
  font-weight: 400;
}

.mwc-page-breadcrumb__item a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.mwc-page-breadcrumb__item a:hover,
.mwc-page-breadcrumb__item a:focus-visible {
  text-decoration: underline;
}

.mwc-page-breadcrumb__item--current span {
  color: #9a9a9a;
  font-weight: 400;
}

.mwc-page-hero__title {
  margin: 0;
  font-size: clamp(2rem, 1.35rem + 2.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1.15;
}

.mwc-page-hero__meta {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #777;
}

.mwc-page__body {
  padding: 3rem 0 4.5rem;
}

.mwc-page__content {
  max-width: 900px;
}

.mwc-page__content--about {
  max-width: none;
}

.mwc-page__body--about {
  padding-top: 0.25rem;
}

.mwc-about {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .mwc-about {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem 3rem;
  }
}

.mwc-about__company {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--mwc-heading);
}

.mwc-about__heading {
  margin: 0 0 1.35rem;
  font-size: clamp(1.2rem, 1rem + 0.75vw, 1.625rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--mwc-heading);
}

.mwc-about__text p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--mwc-text);
}

.mwc-about__text p:last-child {
  margin-bottom: 0;
}

.mwc-about__media {
  margin: 0;
}

.mwc-about__image {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.mwc-page__content.entry-content > *:last-child {
  margin-bottom: 0;
}

.mwc-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #333;
}

.mwc-page-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.mwc-page-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mwc-page-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mwc-page-card {
  padding: 1.5rem;
  background: #fafafa;
  border: 1px solid var(--mwc-border);
  border-radius: 4px;
}

.mwc-page-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.mwc-page-benefits {
  display: grid;
  gap: 0.65rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.mwc-page-benefits li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 500;
}

.mwc-page-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mwc-gold);
}

.mwc-page-cta-wrap {
  margin-top: 2rem;
}

.mwc-page-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #777;
}

.mwc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .mwc-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mwc-gallery-grid__placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #ececec, #d8d8d8);
  border-radius: 4px;
}

/* Gallery categories */
.mwc-gallery-empty {
  margin-top: 2rem;
  padding: 2.5rem;
  text-align: center;
  background: #f7f7f7;
  border-radius: 6px;
}

.mwc-gallery-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .mwc-gallery-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mwc-gallery-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.mwc-gallery-categories__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  padding: 1.75rem;
  overflow: hidden;
  border-radius: 6px;
  background-color: #1c1c1c;
  text-decoration: none;
  color: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 768px) {
  .mwc-gallery-categories__card {
    min-height: 320px;
  }
}

.mwc-gallery-categories__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--mwc-gallery-cover);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.mwc-gallery-categories__card:hover,
.mwc-gallery-categories__card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  outline: none;
  color: #fff;
}

.mwc-gallery-categories__card:hover::before,
.mwc-gallery-categories__card:focus-visible::before {
  transform: scale(1.06);
}

.mwc-gallery-categories__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.72) 100%);
  z-index: 1;
}

.mwc-gallery-categories__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.mwc-gallery-categories__name {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}

.mwc-gallery-categories__card:hover .mwc-gallery-categories__name,
.mwc-gallery-categories__card:focus-visible .mwc-gallery-categories__name {
  color: #fff;
}

.mwc-gallery-categories__card:hover .mwc-gallery-categories__meta,
.mwc-gallery-categories__card:focus-visible .mwc-gallery-categories__meta {
  color: rgba(255, 255, 255, 0.82);
}

.mwc-gallery-categories__meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.mwc-gallery-categories__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dc9814;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mwc-gallery-categories__card:hover .mwc-gallery-categories__cta,
.mwc-gallery-categories__card:focus-visible .mwc-gallery-categories__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery category view */
.mwc-gallery-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3bb54a;
  text-decoration: none;
}

.mwc-gallery-back:hover,
.mwc-gallery-back:focus-visible {
  color: #2d9439;
  text-decoration: underline;
}

.mwc-gallery-view__title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
}

.mwc-gallery-view__empty {
  color: #777;
}

.mwc-gallery-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .mwc-gallery-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .mwc-gallery-photos {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mwc-gallery-photos__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #ececec;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.mwc-gallery-photos__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mwc-gallery-photos__item:hover img,
.mwc-gallery-photos__item:focus-visible img {
  transform: scale(1.05);
}

.mwc-gallery-photos__item:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

/* Lightbox */
body.mwc-gallery-lightbox-open {
  overflow: hidden;
}

.mwc-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.mwc-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.mwc-gallery-lightbox__dialog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 3rem 4rem;
}

.mwc-gallery-lightbox__figure {
  margin: 0;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
}

.mwc-gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
}

.mwc-gallery-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.mwc-gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mwc-gallery-lightbox__nav--prev {
  left: 1rem;
}

.mwc-gallery-lightbox__nav--next {
  right: 1rem;
}

.mwc-gallery-lightbox__close:hover,
.mwc-gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.mwc-page__content--contact {
  max-width: none;
}

.mwc-page__body--contact {
  padding-top: 0.25rem;
}

.mwc-contact {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .mwc-contact {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2.5rem 3rem;
  }
}

.mwc-contact__company {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--mwc-heading);
}

.mwc-contact__reg {
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--mwc-text);
}

.mwc-contact__field {
  margin: 0 0 1.35rem;
}

.mwc-contact__label {
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--mwc-heading);
}

.mwc-contact__value {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--mwc-text);
}

.mwc-contact__value a {
  color: inherit;
  text-decoration: none;
}

.mwc-contact__value a:hover,
.mwc-contact__value a:focus-visible {
  color: var(--mwc-heading);
  text-decoration: underline;
}

.mwc-contact__actions {
  margin: 2rem 0 0;
}

.mwc-contact__map {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 4px;
  background: #f0f0f0;
}

.mwc-contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(100%);
}

@media (min-width: 992px) {
  .mwc-contact__map {
    min-height: 420px;
  }

  .mwc-contact__map iframe {
    min-height: 420px;
  }
}

.mwc-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .mwc-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}

@media (min-width: 992px) {
  .mwc-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.mwc-services-grid__card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background-color: #222;
  background-image: var(--mwc-service-cover);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mwc-services-grid__card--no-image {
  background-image: linear-gradient(145deg, #3a3a3a 0%, #1a1a1a 100%);
}

.mwc-services-grid__card:hover,
.mwc-services-grid__card:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  outline: none;
}

.mwc-services-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.mwc-services-grid__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.35rem 1rem 1.25rem;
  color: #fff;
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.mwc-services-empty {
  margin-top: 2rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: #f7f7f7;
  border-radius: 6px;
}

.mwc-page__content--service-detail {
  max-width: none;
}

.mwc-service-detail__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 993px) {
  .mwc-service-detail__layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 2.5rem 3rem;
  }
}

.mwc-service-detail__content {
  min-width: 0;
}

.mwc-service-detail__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mwc-text);
}

.mwc-service-detail__description p:last-child {
  margin-bottom: 0;
}

.mwc-service-detail__description--empty {
  color: #666;
}

.mwc-service-detail__form-wrap {
  padding: 1.75rem;
  border: 1px solid var(--mwc-border);
  border-radius: 8px;
  background: #fafafa;
}

.mwc-service-detail__form-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.mwc-service-detail__form-lead {
  margin: 0 0 1.25rem;
  color: #666;
}

.mwc-service-detail__notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-weight: 600;
}

.mwc-service-detail__notice--success {
  background: #edf8ef;
  color: #1f6b2d;
}

.mwc-service-detail__notice--error {
  background: #fdf0f0;
  color: #a32d2d;
}

.mwc-service-form__field {
  margin: 0 0 1rem;
}

.mwc-service-form__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mwc-heading);
}

.mwc-service-form__field input,
.mwc-service-form__field textarea,
.mwc-service-form__field input[type="file"] {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 4px;
  font: inherit;
  color: var(--mwc-heading);
  background: #fff;
}

.mwc-service-form__field input[type="file"] {
  padding: 0.55rem 0.85rem;
  cursor: pointer;
}

.mwc-service-form__hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  color: var(--mwc-text);
}

.mwc-service-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.mwc-service-form__actions {
  margin: 1.25rem 0 0;
}

.mwc-sorting-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.mwc-sorting-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--mwc-border);
}

.mwc-page__content--sorting-map {
  max-width: none;
}

.mwc-page__body--sorting-map {
  padding-top: 0.25rem;
  padding-bottom: 0;
}

.mwc-sorting-map-empty {
  padding: 2rem 0;
  text-align: center;
}

.mwc-sorting-map-app {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
  border: 1px solid var(--mwc-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

@media (min-width: 992px) {
  .mwc-sorting-map-app {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    height: min(calc(100vh - 260px), 760px);
    min-height: 560px;
    max-height: 760px;
  }
}

.mwc-sorting-map-app__sidebar {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 420px;
  border-bottom: 1px solid var(--mwc-border);
  background: #fafafa;
}

@media (min-width: 992px) {
  .mwc-sorting-map-app__sidebar {
    height: 100%;
    max-height: none;
    border-bottom: 0;
    border-right: 1px solid var(--mwc-border);
  }
}

.mwc-sorting-map-app__search-wrap {
  flex-shrink: 0;
  padding: 1.25rem 1.25rem 0;
}

.mwc-sorting-map-app__sidebar-scroll {
  flex: 1;
  min-height: 0;
  padding: 1.25rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mwc-sorting-map-app__sidebar-scroll .mwc-sorting-map-app__quick + .mwc-sorting-map-app__quick {
  margin-top: 1.25rem;
}

.mwc-sorting-map-app__search {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 4px;
  font: inherit;
  color: var(--mwc-heading);
  background: #fff;
}

.mwc-sorting-map-app__search:focus {
  outline: 2px solid rgba(59, 181, 74, 0.35);
  border-color: var(--mwc-green);
}

.mwc-sorting-map-app__quick-title {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
}

.mwc-sorting-map-app__quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-sorting-map-app__quick-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 999px;
  background: #fff;
  color: var(--mwc-heading);
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mwc-sorting-map-app__quick-btn:hover,
.mwc-sorting-map-app__quick-btn:focus-visible {
  border-color: var(--mwc-green);
  background: #f3fbf4;
  outline: none;
}

.mwc-sorting-map-app__results {
  margin-top: 1.25rem;
}

.mwc-sorting-map-app__count {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
}

.mwc-sorting-map-app__results-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-sorting-map-app__result-item + .mwc-sorting-map-app__result-item {
  margin-top: 0.5rem;
}

.mwc-sorting-map-app__result-btn {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.mwc-sorting-map-app__result-item.is-active .mwc-sorting-map-app__result-btn,
.mwc-sorting-map-app__result-btn:hover,
.mwc-sorting-map-app__result-btn:focus-visible {
  border-color: var(--mwc-green);
  background: #f3fbf4;
  outline: none;
}

.mwc-sorting-map-app__result-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--mwc-heading);
}

.mwc-sorting-map-app__result-address,
.mwc-sorting-map-app__result-meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #666;
}

.mwc-sorting-map-app__map-wrap {
  position: relative;
  min-height: 360px;
  height: 100%;
}

@media (min-width: 992px) {
  .mwc-sorting-map-app__map-wrap {
    min-height: 0;
  }
}

.mwc-sorting-map-app__map {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.leaflet-container.mwc-sorting-map-app__map {
  font: inherit;
}

.mwc-sorting-marker {
  background: transparent;
  border: 0;
}

.mwc-sorting-marker span {
  display: block;
  width: 30px;
  height: 30px;
  background: var(--mwc-green);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  transform-origin: 15px 26px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.mwc-sorting-marker--active span,
.mwc-sorting-marker.mwc-sorting-marker--active span {
  background: var(--mwc-link);
}

.mwc-sorting-popup {
  font-size: 0.875rem;
  line-height: 1.5;
}

.mwc-sorting-popup strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

.mwc-sorting-popup p {
  margin: 0.35rem 0 0;
}

.mwc-application-box {
  margin-top: 1.5rem;
}

.mwc-application-form .required {
  color: var(--mwc-gold);
}

.mwc-legal-content h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.mwc-blog-grid {
  column-gap: 1.5rem;
  column-count: 1;
}

@media (min-width: 640px) {
  .mwc-blog-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .mwc-blog-grid {
    column-count: 3;
    column-gap: 1.75rem;
  }
}

.mwc-blog-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.5rem;
  break-inside: avoid;
  border: 1px solid var(--mwc-border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mwc-blog-card:hover,
.mwc-blog-card:focus-within {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.mwc-blog-card__image-link {
  display: block;
  overflow: hidden;
  background: #f3f3f3;
}

.mwc-blog-card__image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.mwc-blog-card:hover .mwc-blog-card__image,
.mwc-blog-card:focus-within .mwc-blog-card__image {
  transform: scale(1.04);
}

.mwc-blog-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.mwc-blog-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.mwc-blog-card__title a {
  color: var(--mwc-heading);
  text-decoration: none;
}

.mwc-blog-card__title a:hover,
.mwc-blog-card__title a:focus-visible {
  color: var(--mwc-gold);
}

.mwc-blog-card__meta {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
}

.mwc-blog-card__excerpt {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--mwc-text);
}

.mwc-blog-card__excerpt p {
  margin: 0;
}

.mwc-blog-card__link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mwc-gold);
  text-decoration: none;
}

.mwc-blog-card__link:hover,
.mwc-blog-card__link:focus-visible {
  color: var(--mwc-heading);
}

.mwc-blog-empty {
  margin: 0;
  color: #777;
}

.mwc-blog-pagination {
  margin-top: 2rem;
}

.mwc-blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.mwc-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.65rem;
  border: 1px solid var(--mwc-border);
  border-radius: 4px;
  color: var(--mwc-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mwc-blog-pagination a.page-numbers:hover,
.mwc-blog-pagination a.page-numbers:focus-visible,
.mwc-blog-pagination .page-numbers.current {
  border-color: var(--mwc-gold);
  background: var(--mwc-gold);
  color: #fff;
}
