:root {
  --dc-primary: #2f318b;
  --dc-primary-dark: #24266f;
  --dc-primary-deep: #17184c;
  --dc-primary-soft: #f1f1f8;
  --dc-secondary: #00a2e9;
  --dc-secondary-dark: #006ea6;
  --dc-secondary-soft: #eef8fb;
  --dc-ink: #242120;
  --dc-soft-ink: #41424a;
  --dc-muted: #687078;
  --dc-bg: #f6f4f0;
  --dc-surface: #fffefd;
  --dc-surface-alt: #eeece7;
  --dc-line: #ded8cf;
  --dc-warm: #956037;
  --dc-warm-soft: #f3e9dc;
  --dc-success: #246b4f;
  --dc-warning: #9a620f;
  --dc-danger: #a33a31;
  --color-ink: var(--dc-ink);
  --color-soft-ink: var(--dc-soft-ink);
  --color-muted: var(--dc-muted);
  --color-bg: var(--dc-bg);
  --color-surface: var(--dc-surface);
  --color-line: var(--dc-line);
  --shadow-soft: 0 18px 50px rgba(36, 33, 32, 0.08);
  --shadow-card: 0 18px 40px rgba(36, 33, 32, 0.11);
  --shadow-crisp: 0 1px 2px rgba(36, 33, 32, 0.06), 0 14px 34px rgba(36, 33, 32, 0.08);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --dc-header-height: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffefd 0, var(--color-bg) 620px),
    var(--color-bg);
  color: var(--color-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 162, 233, 0.28);
  outline-offset: 3px;
}

p {
  color: var(--color-muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  color: var(--color-ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--color-ink);
  color: var(--dc-surface);
}

.skip-link:focus {
  top: 16px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.site-header .custom-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(166px, 36vw);
  max-height: 78px;
}

.site-header .site-brand__logo {
  display: block;
  width: min(166px, 36vw);
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
}

.site-header__utility {
  background: linear-gradient(90deg, var(--dc-primary-deep), var(--dc-primary));
  color: var(--dc-surface);
  font-size: 0.92rem;
}

.site-header__utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__utility-link,
.site-header__utility-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 254, 253, 0.94);
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-header__utility-link {
  min-width: 0;
}

.site-header__utility-link span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header__utility a:hover {
  color: var(--dc-surface);
}

.site-header__utility svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header__utility-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-header__utility-phone {
  font-weight: 800;
}

.site-header__main {
  position: relative;
  background: rgba(255, 254, 253, 0.92);
  border-bottom: 1px solid rgba(222, 216, 207, 0.82);
  box-shadow: 0 12px 30px rgba(36, 33, 32, 0.05);
  backdrop-filter: blur(20px);
}

.site-header__inner {
  min-height: 82px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--dc-primary), var(--dc-primary-dark));
  color: var(--dc-surface);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(47, 49, 139, 0.18);
}

.site-header__mobile-actions {
  display: none;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-list {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  position: relative;
  align-items: center;
  min-height: 82px;
  padding: 0 12px;
  color: var(--color-soft-ink);
  font-size: 1rem;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: transparent;
  transition: background-color 160ms ease;
}

.nav-list a:hover,
.nav-list .current-menu-item > a {
  color: var(--dc-primary);
}

.nav-list a:hover::after,
.nav-list .current-menu-item > a::after {
  background: var(--dc-primary);
}

.nav-list__product-trigger svg {
  width: 16px;
  height: 16px;
  margin-left: 3px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.nav-list__product-trigger[aria-expanded="true"] {
  color: var(--dc-primary);
}

.nav-list__product-trigger[aria-expanded="true"]::after {
  background: var(--dc-primary);
}

.nav-list__product-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.product-mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 80;
  padding-top: 12px;
}

.product-mega-menu__container {
  width: min(1400px, calc(100vw - 32px));
  max-width: none;
}

.product-mega-menu__panel {
  position: relative;
  max-height: calc(100vh - var(--dc-header-height) - 24px);
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr) minmax(250px, 320px);
  overflow: auto;
  border: 1px solid rgba(222, 216, 207, 0.96);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.99);
  box-shadow: 0 26px 64px rgba(23, 24, 76, 0.22);
}

.product-mega-menu__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.92);
  color: var(--dc-muted);
  cursor: pointer;
}

.product-mega-menu__close:hover,
.product-mega-menu__close:focus-visible {
  border-color: var(--dc-line);
  color: var(--dc-primary);
}

.product-mega-menu__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.product-mega-menu__families {
  display: flex;
  flex-direction: column;
  padding: 26px 20px 24px;
  border-right: 1px solid var(--dc-line);
}

.product-mega-menu__eyebrow {
  margin: 0 10px 14px;
  color: var(--dc-muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-mega-menu__families ul,
.product-mega-menu__rooms ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-mega-menu__families ul {
  display: grid;
  gap: 4px;
}

.product-mega-menu__families li a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--dc-soft-ink);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.product-mega-menu__families li a:hover,
.product-mega-menu__families li a:focus-visible,
.product-mega-menu__families li a.is-active,
.product-mega-menu__families li a[aria-selected="true"] {
  border-color: rgba(47, 49, 139, 0.16);
  background: var(--dc-primary-soft);
  color: var(--dc-primary);
}

.product-mega-menu__families li svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.product-mega-menu__families li em {
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.product-mega-menu__all-link {
  margin: auto 10px 0;
  padding-top: 18px;
  color: var(--dc-primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.product-mega-menu__content {
  min-width: 0;
  padding: 28px clamp(22px, 3vw, 46px) 30px;
}

.product-mega-menu__content[hidden] {
  display: none;
}

.product-mega-menu__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-right: 34px;
}

.product-mega-menu__heading h2 {
  margin: 0;
  color: var(--dc-ink);
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
  line-height: 1.05;
}

.product-mega-menu__heading p {
  margin: 8px 0 0;
  color: var(--dc-muted);
  font-size: 0.92rem;
}

.product-mega-menu__heading > a {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--dc-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.product-mega-menu__rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(22px, 3vw, 44px);
  margin-top: 30px;
}

.product-mega-menu__rooms h3 {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-mega-menu__rooms h3 a {
  color: var(--dc-ink);
  text-decoration: none;
}

.product-mega-menu__rooms section > p {
  max-width: 34ch;
  margin: 0;
  color: var(--dc-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-mega-menu__rooms section > p + ul {
  margin-top: 12px;
}

.product-mega-menu__rooms ul {
  display: grid;
  gap: 8px;
}

.product-mega-menu__rooms li a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: var(--dc-soft-ink);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.product-mega-menu__rooms h3 a:hover,
.product-mega-menu__rooms h3 a:focus-visible,
.product-mega-menu__rooms li a:hover,
.product-mega-menu__rooms li a:focus-visible {
  color: var(--dc-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-mega-menu__visual {
  min-width: 0;
  margin: 0;
  padding: 24px 24px 24px 0;
}

.product-mega-menu__visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.site-nav__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav__request {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--dc-primary-deep);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav__request:hover {
  background: var(--dc-primary-soft);
  color: var(--dc-primary);
}

.site-nav__request svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-nav__cart {
  overflow: visible;
}

.site-nav__cart svg {
  width: 32px;
  height: 32px;
}

.site-nav__cart-count {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 3px solid var(--dc-surface);
  border-radius: 999px;
  background: var(--dc-primary);
  color: var(--dc-surface);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 7px rgba(23, 24, 76, 0.18);
}

.site-nav__cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--dc-primary);
  background-color: var(--dc-primary);
  color: var(--dc-surface);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(47, 49, 139, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-nav__cta:hover {
  background: var(--dc-primary-dark);
  background-color: var(--dc-primary-dark);
  color: var(--dc-surface);
  box-shadow: 0 16px 32px rgba(47, 49, 139, 0.22);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-ink);
}

.button,
.site-header .button,
.wp-block-button__link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--dc-primary);
  color: var(--dc-surface);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(47, 49, 139, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.site-header .button:hover {
  background: var(--dc-primary-dark);
  box-shadow: 0 16px 32px rgba(47, 49, 139, 0.22);
  transform: translateY(-1px);
}

.woocommerce .site-header a.button.site-nav__cta,
.woocommerce-page .site-header a.button.site-nav__cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-color: transparent;
  border-radius: 8px;
  background: var(--dc-primary);
  background-color: var(--dc-primary);
  color: var(--dc-surface);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(47, 49, 139, 0.18);
}

.woocommerce .site-header a.button.site-nav__cta:hover,
.woocommerce-page .site-header a.button.site-nav__cta:hover {
  background: var(--dc-primary-dark);
  background-color: var(--dc-primary-dark);
  color: var(--dc-surface);
  box-shadow: 0 16px 32px rgba(47, 49, 139, 0.22);
}

.button-secondary {
  border-color: rgba(47, 49, 139, 0.22);
  background: var(--color-surface);
  color: var(--dc-primary);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--dc-primary);
  background: var(--color-surface);
  color: var(--dc-primary);
}

.button-light {
  background: var(--dc-surface);
  color: var(--dc-primary-dark);
  box-shadow: 0 14px 28px rgba(36, 33, 32, 0.18);
}

.button-light:hover {
  background: var(--dc-warm-soft);
}

.eyebrow {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 48px;
  background:
    linear-gradient(135deg, rgba(36, 33, 32, 0.96) 0%, rgba(36, 38, 111, 0.9) 58%, rgba(15, 64, 86, 0.82) 100%);
}

.hero-modern {
  display: flex;
  min-height: calc(100vh - var(--dc-header-height));
  min-height: calc(100svh - var(--dc-header-height));
  align-items: center;
  background: url("../images/homepage-hero-background.jpg") center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }
}

.hero-services {
  background:
    linear-gradient(90deg, rgba(36, 33, 32, 0.96) 0%, rgba(36, 38, 111, 0.84) 42%, rgba(15, 64, 86, 0.36) 100%),
    linear-gradient(135deg, rgba(36, 33, 32, 0.68), rgba(149, 96, 55, 0.1)),
    url("../images/hero-services-background.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 254, 253, 0.08), transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(36, 33, 32, 0.18) 100%);
  pointer-events: none;
}

.hero-modern::before {
  z-index: 1;
  background: rgba(10, 10, 10, 0.58);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-modern > .container {
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 0;
  align-items: center;
}

.hero__content {
  max-width: 820px;
}

.hero .eyebrow,
.hero h1 {
  color: var(--dc-surface);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  line-height: 1.06;
}

.hero__copy {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 254, 253, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.section {
  padding: 72px 0;
}

.section-compact {
  padding: 34px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, var(--dc-surface-alt), var(--dc-surface));
}

.section-how-flow {
  scroll-margin-top: calc(var(--dc-header-height) + 20px);
}

.section-header {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-header--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header--center p {
  margin-right: auto;
  margin-left: auto;
}

.section-header--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-header--split > div {
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 1px 2px rgba(36, 33, 32, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  border-color: rgba(47, 49, 139, 0.18);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.card p:last-child {
  margin-bottom: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(222, 216, 207, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.98), rgba(241, 241, 248, 0.58));
  box-shadow: var(--shadow-crisp);
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--dc-primary), var(--dc-secondary));
}

.metric__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(47, 49, 139, 0.12);
  border-radius: var(--radius);
  background: var(--dc-primary-soft);
  color: var(--dc-primary);
}

.metric__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.metric strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--color-ink);
  font-size: clamp(1.24rem, 1.8vw, 1.55rem);
  line-height: 1.12;
}

.metric__text {
  display: block;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.product-card,
.project-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 1px 2px rgba(36, 33, 32, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.project-card:hover {
  border-color: rgba(47, 49, 139, 0.18);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.product-card__image,
.project-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--dc-surface-alt);
  overflow: hidden;
  text-decoration: none;
}

.product-card__image img,
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.product-card:hover img,
.project-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, var(--dc-warm-soft), var(--dc-secondary-soft));
  color: var(--dc-primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.product-card__body,
.project-card__body {
  padding: 20px;
}

.product-card h2,
.project-card h2 {
  font-size: 1.18rem;
  line-height: 1.18;
}

.product-card h2 a,
.project-card h2 a {
  color: var(--color-ink);
  text-decoration: none;
}

.product-card h2 a:hover,
.project-card h2 a:hover {
  color: var(--dc-primary);
}

.product-card__meta,
.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pill,
.term-list a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0, 110, 166, 0.18);
  background: var(--dc-secondary-soft);
  color: var(--dc-secondary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.price {
  color: var(--color-ink);
  font-size: 1.1rem;
  font-weight: 850;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--dc-primary);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.card-link::after {
  content: "\2192";
  margin-left: 8px;
  transition: transform 160ms ease;
}

.card-link:hover::after {
  transform: translateX(3px);
}

.term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.how-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 32px);
  align-items: start;
  margin-top: 46px;
}

.how-flow__step {
  display: grid;
  justify-items: center;
  text-align: center;
}

.how-flow__number {
  display: block;
  margin-bottom: 18px;
  color: var(--dc-primary);
  font-size: clamp(5.4rem, 9vw, 8.25rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
}

.how-flow__step h3 {
  max-width: 260px;
  margin: 0;
  font-size: clamp(1.22rem, 1.7vw, 1.52rem);
  line-height: 1.14;
}

.how-flow__step p {
  max-width: 310px;
  margin: 14px auto 0;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.how-flow__arrow {
  display: grid;
  width: clamp(54px, 6vw, 86px);
  height: 64px;
  margin-top: clamp(28px, 4vw, 58px);
  place-items: center;
  color: var(--dc-primary);
}

.how-flow__arrow svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.card-category {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.card-category__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

span.card-category__media {
  background:
    linear-gradient(135deg, rgba(47, 49, 139, 0.76), rgba(149, 96, 55, 0.42)),
    var(--dc-primary);
}

.card-category:nth-child(2) span.card-category__media {
  background:
    linear-gradient(135deg, rgba(65, 66, 74, 0.86), rgba(0, 110, 166, 0.32)),
    var(--dc-soft-ink);
}

.card-category:nth-child(3) span.card-category__media {
  background:
    linear-gradient(135deg, rgba(149, 96, 55, 0.58), rgba(47, 49, 139, 0.76)),
    var(--dc-primary-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-soft-ink);
  box-shadow: 0 1px 2px rgba(36, 33, 32, 0.04);
}

.process-list span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--dc-primary);
  color: var(--dc-surface);
  font-size: 0.82rem;
  font-weight: 900;
}

.section-showroom {
  padding-top: 20px;
}

.showroom-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(149, 96, 55, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 253, 0.96), rgba(243, 233, 220, 0.86)),
    var(--dc-surface);
  box-shadow: var(--shadow-crisp);
}

.showroom-band h2 {
  margin-bottom: 0;
}

.showroom-band__details {
  display: grid;
  gap: 10px;
}

.showroom-band__details p {
  margin: 0;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.single-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dc-surface-alt);
}

.single-details {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-crisp);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 10px;
}

.detail-row span:first-child {
  color: var(--color-muted);
}

.detail-row span:last-child {
  color: var(--color-ink);
  font-weight: 750;
  text-align: right;
}

.cta-band {
  padding: 54px 0;
  background:
    linear-gradient(135deg, var(--dc-primary), var(--dc-primary-deep));
  color: var(--dc-surface);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: var(--dc-surface);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.dexin-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-crisp);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dexin-form label,
.dexin-form fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
}

.dexin-form span,
.dexin-form legend {
  color: var(--color-soft-ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.dexin-form input,
.dexin-form select,
.dexin-form textarea {
  width: 100%;
  border: 1px solid var(--dc-line);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--dc-surface);
  color: var(--color-ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.dexin-form input:focus,
.dexin-form select:focus,
.dexin-form textarea:focus {
  border-color: var(--dc-secondary);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 162, 233, 0.18);
}

.dexin-form fieldset {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 16px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-grid label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.checkbox-grid input,
.consent input {
  width: auto;
  margin-top: 5px;
}

.dexin-hp {
  position: absolute;
  left: -9999px;
}

.notice-success {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 122, 77, 0.28);
  border-radius: var(--radius);
  background: #e8f4ee;
  color: var(--dc-success);
}

.site-footer {
  padding: 38px 0 24px;
  border-top: 1px solid rgba(222, 216, 207, 0.72);
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 162, 233, 0.05), transparent 28%),
    linear-gradient(180deg, #fffefd 0%, #f7f8fb 100%);
  color: var(--dc-ink);
}

.site-footer > .container {
  width: min(1500px, calc(100vw - 80px));
}

.site-footer svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.12fr) repeat(3, minmax(180px, 0.92fr)) minmax(230px, 1fr);
  gap: 0;
  padding-bottom: 34px;
}

.site-footer__brand,
.site-footer__column,
.site-footer__contact {
  min-width: 0;
  padding: 0 34px;
  border-left: 1px solid rgba(222, 228, 236, 0.92);
}

.site-footer__brand {
  padding-left: 0;
  border-left: 0;
}

.site-footer__contact {
  padding-right: 0;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.site-footer__logo img {
  width: min(190px, 66vw);
  height: auto;
  display: block;
}

.site-footer__brand p {
  max-width: 310px;
  margin: 0 0 22px;
  color: var(--dc-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.site-footer h3 {
  margin: 0 0 22px;
  color: var(--dc-ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.site-footer__trust,
.site-footer__contact ul,
.footer-links {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__trust li,
.site-footer__contact li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.site-footer__trust svg,
.site-footer__contact svg,
.footer-links--icon a > svg:first-child {
  color: var(--dc-primary);
}

.site-footer__trust span,
.site-footer__contact span {
  min-width: 0;
  display: grid;
  gap: 3px;
  color: var(--dc-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-footer__trust strong,
.site-footer__contact strong {
  color: var(--dc-primary);
  font-size: 0.92rem;
  line-height: 1.25;
}

.site-footer a {
  color: var(--dc-ink);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--dc-primary);
}

.footer-links--icon a {
  min-height: 34px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 16px;
  gap: 14px;
  align-items: center;
  color: var(--dc-ink);
  font-size: 0.93rem;
  line-height: 1.3;
}

.footer-links--icon a > svg:last-child {
  width: 16px;
  height: 16px;
  justify-self: end;
  color: var(--dc-primary-deep);
  opacity: 0.76;
  stroke-width: 2;
}

.footer-links--icon a:hover > svg:last-child {
  opacity: 1;
  transform: translateX(2px);
}

.footer-links__all {
  margin-top: 10px;
}

.footer-links__all a {
  grid-template-columns: minmax(0, 1fr) 16px;
  color: var(--dc-primary);
  font-weight: 850;
}

.site-footer__contact a {
  color: var(--dc-ink);
}

.site-footer__contact li + li {
  padding-top: 14px;
  border-top: 1px solid rgba(222, 228, 236, 0.92);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(207, 214, 223, 0.92);
  color: var(--dc-muted);
  font-size: 0.9rem;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-end;
}

.site-footer__bottom nav a {
  color: var(--dc-primary);
  font-weight: 750;
}

.content-area {
  padding: 64px 0;
}

.entry-content > * {
  max-width: 760px;
}

.entry-content > .alignwide {
  max-width: var(--container);
}

.not-found {
  min-height: 54vh;
  display: grid;
  align-items: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.page-numbers {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-ink);
  font-weight: 800;
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--dc-primary);
  background: var(--dc-primary);
  color: var(--dc-surface);
}

@media (max-width: 920px) {
  :root {
    --dc-header-height: 74px;
  }

  .hero__grid,
  .process-grid,
  .showroom-band,
  .single-layout,
  .grid-3,
  .grid-4,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-how-flow {
    padding-top: calc(var(--dc-header-height) + 24px);
  }

  .how-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .how-flow__number {
    font-size: clamp(4.85rem, 18vw, 6.2rem);
    margin-bottom: 12px;
  }

  .how-flow__arrow {
    width: 64px;
    height: 42px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .single-details {
    position: static;
  }

  .site-header__utility {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .site-header__mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: grid;
    gap: 16px;
  }

  .nav-list {
    display: grid;
    flex: none;
    gap: 6px;
  }

  .nav-list a {
    min-height: 44px;
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-list a:hover,
  .nav-list .current-menu-item > a {
    background: var(--dc-primary-soft);
  }

  .site-nav__actions {
    display: grid;
    gap: 10px;
  }

  .site-nav__request {
    display: none;
  }

  .site-header__mobile-actions .site-nav__cart {
    width: 44px;
    height: 44px;
    display: inline-grid;
  }

  .site-nav__cta {
    min-width: 0;
    width: 100%;
  }

  .product-mega-menu {
    padding-top: 0;
  }

  .product-mega-menu__container {
    width: 100%;
  }

  .product-mega-menu__panel {
    max-height: calc(100vh - 74px);
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 8px 8px;
  }

  .product-mega-menu__families {
    padding: 18px 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--dc-line);
  }

  .product-mega-menu__families ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-mega-menu__all-link {
    margin-top: 4px;
  }

  .product-mega-menu__content {
    padding: 22px 18px 26px;
  }

  .product-mega-menu__heading {
    padding-right: 36px;
  }

  .product-mega-menu__visual {
    display: none;
  }

  .site-footer {
    padding-top: 34px;
  }

  .site-footer > .container {
    width: min(100vw - 32px, 1180px);
  }

  .site-footer__grid {
    gap: 0;
    padding-bottom: 28px;
  }

  .site-footer__brand,
  .site-footer__column,
  .site-footer__contact {
    padding: 26px 0;
    border-left: 0;
    border-top: 1px solid rgba(222, 228, 236, 0.92);
  }

  .site-footer__brand {
    padding-top: 0;
    border-top: 0;
  }

  .site-footer__brand p {
    max-width: 560px;
  }

  .site-footer__trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-links--icon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__contact ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__contact li + li {
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
    --dc-header-height: 74px;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .site-header .custom-logo {
    max-width: min(132px, 52vw);
    max-height: 64px;
  }

  .site-header .site-brand__logo {
    width: min(132px, 52vw);
    height: 64px;
  }

  .product-mega-menu__families {
    overflow: hidden;
  }

  .product-mega-menu__families ul {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .product-mega-menu__families li {
    flex: 0 0 min(78vw, 260px);
    scroll-snap-align: start;
  }

  .product-mega-menu__heading {
    display: grid;
    gap: 10px;
  }

  .product-mega-menu__heading h2 {
    font-size: 1.7rem;
  }

  .product-mega-menu__heading > a {
    margin: 0;
  }

  .product-mega-menu__rooms {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 24px;
  }

  .product-mega-menu__rooms ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 42px 0 32px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.8vw, 2.75rem);
    line-height: 1.04;
  }

  .hero__copy {
    font-size: 1.07rem;
    line-height: 1.5;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .section-header--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid,
  .grid-2,
  .checkbox-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .showroom-band {
    padding: 22px;
  }

  .site-footer__trust,
  .footer-links--icon,
  .site-footer__contact ul {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom nav {
    justify-content: flex-start;
  }

  .cta-band__inner,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
