:root {
  --pvh-bg: #04070d;
  --pvh-panel: #0b111a;
  --pvh-line: rgba(214, 155, 62, 0.35);
  --pvh-gold: #d69b3e;
  --pvh-gold-light: #ffe0a0;
  --pvh-text: #f4efe6;
  --pvh-muted: #a7adb7;
  --pvh-max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 78% 18%, rgba(142, 77, 255, 0.15), transparent 28rem), var(--pvh-bg);
  color: var(--pvh-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.pvh-lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--pvh-gold-light);
  outline-offset: 4px;
}

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

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--pvh-gold);
  color: #130d04;
}

.site-header,
.site-footer {
  border-color: var(--pvh-line);
  background: rgba(4, 7, 13, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--pvh-line);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(4, 7, 13, 0.98);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.site-header__inner,
.site-topbar__inner,
.site-footer__inner,
.site-main {
  width: min(var(--pvh-max), calc(100% - 32px));
  margin: 0 auto;
}

.site-topbar {
  border-bottom: 1px solid rgba(214, 155, 62, 0.18);
  background: rgba(1, 4, 9, 0.54);
}

.site-topbar__inner {
  display: flex;
  justify-content: flex-end;
  min-height: 40px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 2rem;
}

.site-branding__text strong,
.site-footer__brand strong,
.hero h1,
.page-header h1 {
  font-family: Cinzel, Georgia, serif;
  color: var(--pvh-gold-light);
}

.site-branding {
  flex: 0 0 auto;
}

.site-branding__text {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.site-branding__crest {
  display: grid;
  place-items: center;
  width: 46px;
  height: 50px;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.site-branding__crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 9px rgba(214, 155, 62, 0.28));
}

.site-branding__text:hover .site-branding__crest,
.site-branding__text:focus-visible .site-branding__crest {
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 0 16px rgba(214, 155, 62, 0.45));
}

.site-branding__wordmark strong {
  display: block;
  font-size: 2.05rem;
  line-height: 0.92;
}

.site-branding__wordmark em,
.site-footer__brand span {
  display: block;
  color: var(--pvh-muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.1em;
}

.site-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-menu a,
.footer-menu a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 0.85rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pvh-text);
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.site-menu a:hover,
.site-menu a:focus-visible,
.site-menu .current-menu-item > a,
.site-menu .current-menu-ancestor > a,
.site-menu .current_page_item > a,
.site-menu .current_page_parent > a,
.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--pvh-gold-light);
  background: rgba(214, 155, 62, 0.08);
  box-shadow: inset 0 0 0 1px rgba(214, 155, 62, 0.18);
}

.site-menu li {
  position: relative;
}

.site-navigation {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.site-menu--topbar {
  gap: 0.05rem;
}

.site-menu--topbar a {
  min-height: 40px;
  padding: 0 0.7rem;
  color: var(--pvh-muted);
  font-size: 0.68rem;
}

.site-menu .menu-item-has-children > a {
  padding-right: 0.35rem;
}

.submenu-toggle {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 0.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--pvh-gold-light);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.submenu-toggle:hover,
.submenu-toggle:focus-visible,
.current-menu-item > .submenu-toggle,
.current-menu-ancestor > .submenu-toggle,
.submenu-toggle[aria-expanded="true"] {
  border-color: var(--pvh-line);
  background: rgba(214, 155, 62, 0.1);
}

.submenu-toggle[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.submenu-toggle span {
  display: block;
  line-height: 1;
  transition: transform 0.18s ease;
}

.site-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 0.45rem;
  margin: 0;
  list-style: none;
  border: 1px solid var(--pvh-line);
  border-radius: 8px;
  background: rgba(5, 9, 16, 0.98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.site-menu li:hover > .sub-menu,
.site-menu li:focus-within > .sub-menu,
.site-menu li.is-submenu-open > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-menu .sub-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 38px;
  border-radius: 6px;
  color: var(--pvh-muted);
  text-transform: none;
  font-size: 0.86rem;
}

.site-menu .sub-menu a:hover,
.site-menu .sub-menu a:focus-visible {
  color: var(--pvh-gold-light);
}

.site-header__actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 42px;
  padding: 0 1.4rem;
  border: 1px solid var(--pvh-line);
  border-radius: 999px;
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--pvh-gold-light);
  background: linear-gradient(180deg, var(--pvh-gold-light), var(--pvh-gold));
  color: #130d04;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--pvh-line);
  border-radius: 8px;
  background: transparent;
  color: var(--pvh-gold-light);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  border-color: var(--pvh-gold-light);
  background: rgba(214, 155, 62, 0.1);
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-navigation {
  display: none;
  width: min(var(--pvh-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 1rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero,
.page-section {
  padding: 4rem 0;
}

.hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--pvh-line);
}

.hero__content,
.page-header,
.section-header {
  max-width: 780px;
}

.eyebrow {
  color: var(--pvh-gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.85;
}

.hero__subtitle {
  margin: 0.25rem 0 1rem;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 1.4rem;
  border: 1px solid var(--pvh-line);
  border-radius: 999px;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  isolation: isolate;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  z-index: -1;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  transition: left 0.46s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.button:hover::after,
.button:focus-visible::after {
  left: 112%;
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(180deg, var(--pvh-gold-light), var(--pvh-gold));
  color: #130d04;
  box-shadow: 0 12px 34px rgba(214, 155, 62, 0.2);
}

.button--secondary {
  color: var(--pvh-gold-light);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(255, 224, 160, 0.62);
  background: rgba(214, 155, 62, 0.08);
}

.front-hero {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(360px, 1fr) minmax(420px, 1.08fr);
  gap: 2rem;
  align-items: center;
  min-height: 520px;
  margin: 1.4rem 0 1rem;
  padding: 2.2rem;
  overflow: hidden;
  border: 1px solid var(--pvh-line);
  background:
    radial-gradient(circle at 86% 44%, rgba(214, 155, 62, 0.16), transparent 24rem),
    radial-gradient(circle at 68% 38%, rgba(142, 77, 255, 0.22), transparent 25rem),
    linear-gradient(135deg, rgba(7, 12, 20, 0.96), rgba(4, 7, 13, 0.84));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.front-hero::before {
  content: "";
  position: absolute;
  inset: -8%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(214, 155, 62, 0.08), transparent 22%, transparent 78%, rgba(214, 155, 62, 0.08)),
    radial-gradient(circle at 18% 52%, rgba(255, 224, 160, 0.14), transparent 9rem);
  opacity: 0.8;
  transform: translate3d(calc(var(--pvh-depth, 0px) * -0.28), calc(var(--pvh-depth, 0px) * 0.34), 0);
  transition: transform 0.12s linear;
}

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

.front-hero__brand {
  display: grid;
  justify-items: center;
  gap: 1rem;
  color: var(--pvh-gold-light);
  text-align: center;
}

.front-crest {
  display: grid;
  place-items: center;
  width: min(220px, 100%);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 224, 160, 0.78);
  background:
    radial-gradient(circle, rgba(214, 155, 62, 0.24), rgba(214, 155, 62, 0.05) 58%, transparent),
    linear-gradient(180deg, rgba(255, 224, 160, 0.11), rgba(0, 0, 0, 0.05));
  box-shadow: 0 0 70px rgba(214, 155, 62, 0.16), inset 0 0 42px rgba(214, 155, 62, 0.08);
  clip-path: polygon(50% 0, 86% 14%, 100% 52%, 78% 100%, 22% 100%, 0 52%, 14% 14%);
  transition: filter 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.front-crest:hover {
  filter: saturate(1.08);
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 0 90px rgba(214, 155, 62, 0.25), inset 0 0 50px rgba(214, 155, 62, 0.12);
}

.front-crest span {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.front-hero__brand p {
  margin: 0;
  color: var(--pvh-muted);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.front-hero__copy h1 {
  max-width: 620px;
  margin: 0 0 1rem;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(3rem, 4.6vw, 5.35rem);
  line-height: 1.02;
  color: var(--pvh-gold-light);
}

.front-hero__lead {
  color: var(--pvh-gold-light);
  font-weight: 700;
}

.front-hero__copy p:not(.eyebrow) {
  max-width: 620px;
}

.hero-project-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(214, 155, 62, 0.58);
  background: rgba(5, 9, 16, 0.88);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.hero-project-card__content {
  padding: 1.5rem;
}

.hero-project-card h2 {
  margin: 0 0 0.55rem;
  font-family: Cinzel, Georgia, serif;
  font-size: 2rem;
  color: var(--pvh-gold-light);
}

.hero-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0.55rem;
  border: 1px solid rgba(214, 155, 62, 0.6);
  border-radius: 4px;
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.1rem 0 0.45rem;
  color: var(--pvh-muted);
  font-size: 0.82rem;
}

.progress-bar {
  display: block;
  height: 6px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pvh-gold-light), var(--pvh-gold));
}

.front-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(214, 155, 62, 0.28);
  background: rgba(214, 155, 62, 0.16);
}

.front-stats div {
  padding: 1.05rem;
  background: rgba(7, 12, 20, 0.92);
  text-align: center;
}

.front-stats strong {
  display: block;
  color: var(--pvh-gold-light);
  font-size: 1.55rem;
}

.front-stats span {
  color: var(--pvh-muted);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.front-dashboard {
  display: grid;
  grid-template-columns: 360px 1fr 330px;
  gap: 0.65rem;
  align-items: start;
}

.front-panel {
  position: relative;
  border: 1px solid rgba(214, 155, 62, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.94), rgba(4, 8, 14, 0.95));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.front-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 224, 160, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.front-panel:hover::before {
  opacity: 1;
}

.front-page-content,
.contact-page-content {
  margin: 0 0 1rem;
  padding: 1.25rem;
}

.front-page-content .entry-content > :first-child,
.contact-page-content .entry-content > :first-child {
  margin-top: 0;
}

.front-page-content .entry-content > :last-child,
.contact-page-content .entry-content > :last-child {
  margin-bottom: 0;
}

.front-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 0;
}

.front-panel__header h2 {
  position: relative;
  margin: 0;
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
}

.front-panel__header h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 0.45rem;
  background: linear-gradient(90deg, var(--pvh-gold-light), transparent);
}

.front-panel__header a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--pvh-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-stack {
  display: grid;
  gap: 1px;
  padding: 1rem;
}

.service-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 16, 0.68);
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-row:hover {
  background: rgba(255, 224, 160, 0.035);
  transform: translateX(3px);
}

.service-row > span {
  color: var(--pvh-gold);
  font-weight: 800;
}

.service-row h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.service-row p {
  margin: 0;
  color: var(--pvh-muted);
  font-size: 0.82rem;
}

.service-row a {
  display: inline-flex;
  min-height: 40px;
  min-width: 40px;
  align-items: center;
  justify-content: center;
  color: var(--pvh-gold-light);
  font-weight: 800;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1rem;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(4, 8, 14, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 155, 62, 0.5);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.highlight-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  opacity: 0.76;
  transition: opacity 0.22s ease, transform 0.28s ease;
}

.highlight-card:hover img {
  opacity: 0.92;
  transform: scale(1.025);
}

.highlight-card div {
  padding: 1rem;
}

.highlight-card h3 {
  margin: 0.55rem 0 0.4rem;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.25rem;
}

.highlight-card h3 a,
.news-preview h3 a,
.download-meta-row a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}

.highlight-card p {
  margin: 0;
  color: var(--pvh-muted);
  font-size: 0.88rem;
}

.highlight-card small {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-weight: 700;
}

.news-preview {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.news-preview article {
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 16, 0.68);
}

.news-preview article a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}

.news-preview time {
  color: var(--pvh-muted);
  font-size: 0.76rem;
}

.news-preview h3 {
  margin: 0.25rem 0;
  font-size: 1rem;
}

.news-preview p {
  margin: 0;
  color: var(--pvh-muted);
  font-size: 0.84rem;
}

.contact-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin: 1rem 0 2rem;
  padding: 1.6rem;
  border: 1px solid rgba(214, 155, 62, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 50%, rgba(142, 77, 255, 0.2), transparent 16rem),
    linear-gradient(180deg, rgba(12, 18, 28, 0.94), rgba(5, 9, 16, 0.96));
}

.contact-teaser h2 {
  margin: 0 0 0.5rem;
  font-family: Cinzel, Georgia, serif;
  color: var(--pvh-gold-light);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.contact-teaser p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--pvh-muted);
}

.project-archive-hero,
.download-archive-hero,
.project-detail-hero {
  position: relative;
  margin: 1.4rem 0 0.8rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--pvh-line);
  background:
    radial-gradient(circle at 80% 38%, rgba(142, 77, 255, 0.22), transparent 25rem),
    radial-gradient(circle at 88% 58%, rgba(214, 155, 62, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(7, 12, 20, 0.96), rgba(4, 7, 13, 0.88));
}

.project-archive-hero::before,
.download-archive-hero::before,
.project-detail-hero::before,
.news-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(214, 155, 62, 0.08), transparent 20%, transparent 80%, rgba(214, 155, 62, 0.08)),
    radial-gradient(circle at 22% 48%, rgba(255, 224, 160, 0.12), transparent 10rem);
  opacity: 0.72;
  transform: translate3d(calc(var(--pvh-depth, 0px) * -0.22), calc(var(--pvh-depth, 0px) * 0.32), 0);
  transition: transform 0.12s linear;
}

.project-archive-hero::after,
.download-archive-hero::after,
.project-detail-hero::after,
.news-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 5vw, 4rem);
  bottom: 1.1rem;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 160, 0.52), transparent);
}

.project-archive-hero > *,
.download-archive-hero > *,
.project-detail-hero > *,
.news-hero > *,
.contact-hero > * {
  position: relative;
  z-index: 1;
}

.project-archive-hero,
.download-archive-hero {
  text-align: center;
}

.project-archive-hero h1,
.download-archive-hero h1,
.project-detail-hero h1 {
  max-width: 920px;
  margin: 0 auto 0.8rem;
  font-family: Cinzel, Georgia, serif;
  color: var(--pvh-gold-light);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.95;
}

.project-archive-hero p:not(.eyebrow),
.download-archive-hero p:not(.eyebrow),
.project-detail-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--pvh-muted);
}

.project-filter-bar,
.download-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 0.8rem;
  padding: 0.8rem;
  border: 1px solid rgba(214, 155, 62, 0.28);
  border-radius: 8px;
  background: rgba(7, 12, 20, 0.84);
}

.project-filter-bar button,
.download-filter-bar button {
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(4, 8, 14, 0.86);
  color: var(--pvh-text);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.project-filter-bar button:hover,
.project-filter-bar button:focus-visible,
.project-filter-bar button.is-active,
.download-filter-bar button:hover,
.download-filter-bar button:focus-visible,
.download-filter-bar button.is-active {
  border-color: transparent;
  background: linear-gradient(180deg, var(--pvh-gold-light), var(--pvh-gold));
  color: #130d04;
  transform: translateY(-1px);
}

.featured-download {
  position: relative;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(214, 155, 62, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 45%, rgba(214, 155, 62, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(12, 18, 28, 0.94), rgba(4, 8, 14, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.featured-download__media img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border: 1px solid rgba(214, 155, 62, 0.28);
  border-radius: 6px;
  opacity: 0.8;
}

.featured-download h2 {
  margin: 0 0 0.45rem;
  font-family: Cinzel, Georgia, serif;
  color: var(--pvh-gold-light);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.featured-download p {
  color: var(--pvh-muted);
}

.download-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 2rem;
}

.download-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.download-overview-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(214, 155, 62, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.94), rgba(4, 8, 14, 0.96));
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.download-overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 155, 62, 0.58);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.download-overview-card[hidden] {
  display: none;
}

.download-overview-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(214, 155, 62, 0.45);
  border-radius: 50%;
  color: var(--pvh-gold-light);
  background: rgba(214, 155, 62, 0.08);
  font-weight: 900;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.download-overview-card:hover .download-overview-card__icon {
  background: rgba(214, 155, 62, 0.15);
  box-shadow: 0 0 24px rgba(214, 155, 62, 0.18);
  transform: scale(1.04);
}

.download-overview-card__body {
  display: grid;
  gap: 0.8rem;
}

.download-overview-card h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.35rem;
}

.download-overview-card p {
  margin: 0;
  color: var(--pvh-muted);
}

.download-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--pvh-muted);
  font-size: 0.8rem;
}

.download-sidebar {
  display: grid;
  gap: 0.8rem;
}

.download-sidebar-card {
  padding: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.download-sidebar-card:hover {
  border-color: rgba(214, 155, 62, 0.48);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.download-sidebar-card h2 {
  margin: 0 0 0.8rem;
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
}

.download-sidebar-card p {
  color: var(--pvh-muted);
}

.download-sidebar-card ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.download-sidebar-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--pvh-muted);
}

.download-sidebar-card strong {
  color: var(--pvh-gold-light);
}

.download-sidebar-card a,
.project-overview-card h2 a,
.download-overview-card h2 a,
.news-list-item h2 a,
.contact-info-card a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}

.news-hero {
  position: relative;
  margin: 1.4rem 0 0.8rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--pvh-line);
  background:
    radial-gradient(circle at 78% 44%, rgba(142, 77, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 90% 58%, rgba(214, 155, 62, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(7, 12, 20, 0.96), rgba(4, 7, 13, 0.88));
}

.news-hero h1 {
  margin: 0 0 0.8rem;
  font-family: Cinzel, Georgia, serif;
  color: var(--pvh-gold-light);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.95;
}

.news-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--pvh-muted);
}

.news-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 2rem;
}

.news-timeline {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.news-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 67px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(214, 155, 62, 0.48), transparent);
}

.news-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(220px, 260px) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(214, 155, 62, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.94), rgba(4, 8, 14, 0.96));
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.news-list-item:hover {
  border-color: rgba(214, 155, 62, 0.5);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.news-list-item::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 54px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--pvh-gold-light);
  border-radius: 50%;
  background: var(--pvh-bg);
  box-shadow: 0 0 0 6px rgba(214, 155, 62, 0.09);
}

.news-list-item__date {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  padding-top: 0.55rem;
  color: var(--pvh-gold-light);
  text-align: center;
  text-transform: uppercase;
}

.news-list-item__date strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1;
}

.news-list-item__date span {
  color: var(--pvh-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.news-list-item__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(214, 155, 62, 0.28);
  border-radius: 6px;
  opacity: 0.78;
  transition: opacity 0.22s ease, transform 0.28s ease;
}

.news-list-item:hover .news-list-item__media img {
  opacity: 0.92;
  transform: scale(1.018);
}

.news-list-item__content {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.news-excerpt {
  display: grid;
  gap: 0.55rem;
}

.news-excerpt p {
  margin: 0;
}

.news-category {
  margin: 0;
  color: var(--pvh-gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.news-list-item h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  color: var(--pvh-text);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.1;
}

.news-excerpt {
  display: grid;
  gap: 0.6rem;
}

.news-excerpt p {
  margin: 0;
  color: var(--pvh-muted);
}

.news-sidebar {
  position: sticky;
  top: 130px;
}

.social-feed-module {
  padding: 1rem;
}

.social-feed-module h2 {
  margin: 0 0 0.75rem;
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
}

.social-feed-module p {
  color: var(--pvh-muted);
}

.social-feed-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-feed-list article {
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 8, 14, 0.72);
}

.social-feed-list span {
  color: var(--pvh-gold);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.social-feed-list h3 {
  margin: 0.3rem 0;
  font-size: 1rem;
}

.contact-hero {
  position: relative;
  margin: 1.4rem 0 0.8rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--pvh-line);
  background:
    radial-gradient(circle at 80% 44%, rgba(142, 77, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 58%, rgba(214, 155, 62, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(7, 12, 20, 0.96), rgba(4, 7, 13, 0.88));
}

.contact-hero h1 {
  max-width: 940px;
  margin: 0 0 0.8rem;
  font-family: Cinzel, Georgia, serif;
  color: var(--pvh-gold-light);
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 1;
}

.contact-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--pvh-muted);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 2rem;
}

.contact-form-panel,
.contact-info-card {
  padding: 1.25rem;
}

.contact-form-panel h2,
.contact-info-card h2 {
  margin: 0 0 1rem;
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
}

.pvh-contact-form {
  display: grid;
  gap: 1rem;
}

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

.pvh-contact-form label span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--pvh-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.pvh-contact-form input,
.pvh-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(214, 155, 62, 0.24);
  border-radius: 7px;
  background: rgba(4, 8, 14, 0.86);
  color: var(--pvh-text);
  padding: 0.85rem 0.95rem;
}

.pvh-contact-form textarea {
  resize: vertical;
}

.pvh-contact-form input:focus,
.pvh-contact-form textarea:focus {
  outline: 2px solid rgba(255, 224, 160, 0.55);
  outline-offset: 2px;
  border-color: var(--pvh-gold-light);
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  min-height: 44px;
  color: var(--pvh-muted);
}

.privacy-check input {
  width: 22px;
  height: 22px;
  margin-top: 0.12rem;
}

.form-honeypot {
  position: fixed;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

.contact-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(214, 155, 62, 0.3);
  border-radius: 7px;
  background: rgba(214, 155, 62, 0.08);
}

.contact-alert--success {
  border-color: rgba(53, 214, 164, 0.45);
  color: #a8f5dc;
}

.contact-alert--error {
  border-color: rgba(255, 118, 118, 0.45);
  color: #ffc3c3;
}

.contact-sidebar {
  display: grid;
  gap: 0.9rem;
}

.contact-info-card p,
.contact-info-card dd {
  color: var(--pvh-muted);
}

.contact-info-card dl {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
}

.contact-info-card dt {
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-info-card dd {
  margin: 0 0 0.55rem;
}

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.project-overview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 155, 62, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.94), rgba(4, 8, 14, 0.96));
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.project-overview-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 160, 0.45), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.project-overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 155, 62, 0.58);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
}

.project-overview-card:hover::after {
  opacity: 1;
}

.project-overview-card[hidden] {
  display: none;
}

.project-overview-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 0.22s ease, transform 0.3s ease;
}

.project-overview-card:hover .project-overview-card__image img {
  opacity: 0.92;
  transform: scale(1.025);
}

.project-overview-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.project-card-meta span {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 0 0.5rem;
  border: 1px solid rgba(214, 155, 62, 0.5);
  border-radius: 4px;
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 800;
}

.project-overview-card h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  color: var(--pvh-text);
  font-size: 1.35rem;
}

.project-overview-card p {
  margin: 0;
  color: var(--pvh-muted);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tech-list span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 0.55rem;
  border: 1px solid rgba(51, 165, 232, 0.38);
  border-radius: 999px;
  color: #9bd7ff;
  background: rgba(51, 165, 232, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
}

.project-detail-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.project-detail-hero h1 {
  margin-inline: 0;
}

.project-detail-hero p:not(.eyebrow) {
  margin-inline: 0;
}

.project-detail-hero__media img {
  width: 100%;
  border: 1px solid rgba(214, 155, 62, 0.44);
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 2rem;
}

.project-detail-main {
  display: grid;
  gap: 0.9rem;
}

.project-section-card {
  padding: 1.25rem;
}

.project-section-card h2,
.project-status-box h2 {
  margin: 0 0 0.85rem;
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
}

.project-section-card p {
  color: var(--pvh-muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.feature-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 8, 14, 0.72);
}

.feature-list span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(214, 155, 62, 0.45);
  color: var(--pvh-gold-light);
}

.feature-list p {
  margin: 0;
}

.tech-list--large {
  margin-bottom: 1rem;
}

.tech-list--large span {
  min-height: 32px;
  padding-inline: 0.75rem;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.mockup-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(214, 155, 62, 0.34);
  border-radius: 6px;
}

.project-status-sidebar {
  position: sticky;
  top: 130px;
}

.project-status-box {
  padding: 1.1rem;
}

.project-status-box dl {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 1rem;
}

.project-status-box dt {
  color: var(--pvh-gold-light);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
}

.project-status-box dd {
  margin: 0 0 0.55rem;
  color: var(--pvh-muted);
}

.pvh-reveal {
  opacity: 1;
  transform: none;
}

.pvh-js .pvh-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
  transition-delay: var(--pvh-reveal-delay, 0ms);
}

.pvh-js .pvh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-grid,
.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.content-card {
  position: relative;
  border: 1px solid var(--pvh-line);
  background: linear-gradient(180deg, rgba(15, 22, 32, 0.95), rgba(5, 9, 15, 0.95));
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.content-card:hover {
  border-color: rgba(214, 155, 62, 0.5);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.content-card__body {
  padding: 1.25rem;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 0.65rem;
  font-family: Cinzel, Georgia, serif;
}

.content-card p,
.entry-content,
.archive-description {
  color: var(--pvh-muted);
}

.text-link {
  color: var(--pvh-gold-light);
  font-weight: 700;
}

.card-meta {
  color: var(--pvh-gold-light);
  font-size: 0.82rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.25rem;
  align-items: start;
}

.detail-layout .entry-content img {
  border: 1px solid var(--pvh-line);
}

.detail-box dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

.detail-box dt {
  color: var(--pvh-gold-light);
  font-weight: 800;
}

.detail-box dd {
  margin: 0 0 0.65rem;
  color: var(--pvh-muted);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.media-grid img,
.mockup-grid img {
  cursor: zoom-in;
  transition: border-color 0.2s ease, filter 0.2s ease, opacity 0.2s ease, transform 0.25s ease;
}

.media-grid img:hover,
.mockup-grid img:hover {
  border-color: rgba(255, 224, 160, 0.68);
  filter: saturate(1.06);
  opacity: 0.95;
  transform: translateY(-2px);
}

.pvh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(1, 4, 9, 0.86);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.pvh-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pvh-lightbox__frame {
  display: grid;
  gap: 0.8rem;
  max-width: min(1100px, 94vw);
  margin: 0;
  transform: translateY(10px) scale(0.985);
  transition: transform 0.24s ease;
}

.pvh-lightbox.is-open .pvh-lightbox__frame {
  transform: translateY(0) scale(1);
}

.pvh-lightbox__frame img {
  max-height: min(76vh, 760px);
  max-width: 100%;
  width: auto;
  border: 1px solid rgba(255, 224, 160, 0.54);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

.pvh-lightbox__frame figcaption {
  color: var(--pvh-muted);
  text-align: center;
  font-size: 0.9rem;
}

.pvh-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 224, 160, 0.54);
  border-radius: 8px;
  background: rgba(4, 8, 14, 0.88);
  color: var(--pvh-gold-light);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  transition: background 0.18s ease, transform 0.18s ease;
}

.pvh-lightbox__close:hover,
.pvh-lightbox__close:focus-visible {
  background: rgba(214, 155, 62, 0.14);
  transform: translateY(-1px);
}

.site-footer {
  border-top: 1px solid var(--pvh-line);
  padding: 2rem 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__legal {
  margin: 0;
  color: var(--pvh-muted);
  font-size: 0.85rem;
}

.site-footer__social {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-footer__social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 155, 62, 0.22);
  border-radius: 50%;
  color: var(--pvh-muted);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover {
  transform: translateY(-2px);
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: var(--pvh-gold-light);
  border-color: rgba(214, 155, 62, 0.5);
}

@media (max-width: 1080px) {
  .site-topbar,
  .site-navigation {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
    gap: 1rem;
  }

  .site-branding__crest {
    width: 44px;
    height: 44px;
  }

  .site-branding__wordmark strong {
    font-size: 1.5rem;
  }

  .site-branding__wordmark em {
    max-width: 150px;
    font-size: 0.58rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    display: none;
  }

  .mobile-navigation {
    display: block;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .mobile-navigation.is-open {
    max-height: calc(100vh - 76px);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu--mobile {
    display: grid;
    gap: 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(214, 155, 62, 0.18);
  }

  .site-menu--mobile li {
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-menu--mobile a {
    min-height: 48px;
    justify-content: flex-start;
    border-radius: 0;
  }

  .site-menu--mobile .submenu-toggle {
    align-self: center;
    margin: 0 0.25rem;
  }

  .site-menu--mobile .sub-menu {
    position: static;
    grid-column: 1 / -1;
    display: grid;
    max-height: 0;
    overflow: hidden;
    min-width: 0;
    padding: 0 0 0 1rem;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.22s ease, padding 0.22s ease;
  }

  .site-menu--mobile .is-submenu-open > .sub-menu {
    max-height: 420px;
    padding-bottom: 0.5rem;
  }

  .site-menu--mobile .sub-menu li {
    border-bottom: 0;
  }

  .site-menu--mobile .sub-menu a {
    min-height: 42px;
  }

  .site-footer__inner {
    display: grid;
    gap: 0.75rem;
  }

  .card-grid,
  .post-list {
    grid-template-columns: 1fr;
  }

  .detail-layout,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .front-hero,
  .front-dashboard,
  .contact-teaser,
  .project-detail-hero,
  .project-detail-layout,
  .featured-download,
  .download-page-layout,
  .news-page-layout {
    grid-template-columns: 1fr;
  }

  .contact-page-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .front-hero {
    padding: 1.3rem;
    min-height: 0;
  }

  .front-hero__brand {
    display: none;
  }

  .hero-project-card {
    display: none;
  }

  .hero-project-card img {
    min-height: 220px;
  }

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

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .project-card-grid,
  .download-card-grid,
  .feature-list,
  .mockup-grid {
    grid-template-columns: 1fr;
  }

  .project-status-sidebar {
    position: static;
  }

  .news-sidebar {
    position: static;
  }

  .news-timeline::before,
  .news-list-item::before {
    display: none;
  }

  .news-list-item {
    grid-template-columns: 1fr;
  }

  .news-list-item__date {
    justify-items: start;
    text-align: left;
  }

  .contact-teaser {
    align-items: stretch;
  }
}

@media (max-width: 520px) {
  .site-header__inner,
  .site-topbar__inner,
  .mobile-navigation {
    width: min(var(--pvh-max), calc(100% - 20px));
  }

  .front-hero__copy h1 {
    font-size: 2.65rem;
  }

  .front-stats {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 28px 1fr;
  }

  .service-row a {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .project-archive-hero,
  .download-archive-hero,
  .project-detail-hero,
  .news-hero,
  .contact-hero {
    margin-top: 0.9rem;
    padding: 1.35rem;
  }

  .project-archive-hero h1,
  .download-archive-hero h1,
  .project-detail-hero h1,
  .news-hero h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
    line-height: 1;
  }

  .contact-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.65rem);
  }

  .project-filter-bar,
  .download-filter-bar {
    gap: 0.45rem;
    padding: 0.65rem;
  }

  .project-filter-bar button,
  .download-filter-bar button {
    flex: 1 1 auto;
  }

  .news-list-item {
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .news-list-item__media img {
    aspect-ratio: 16 / 8;
  }

  .download-overview-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .download-overview-card__icon {
    width: 44px;
    height: 44px;
  }

  .download-overview-card .button,
  .featured-download .button,
  .project-overview-card .button,
  .news-list-item .button,
  .pvh-contact-form .button {
    width: 100%;
  }

  .contact-form-panel,
  .contact-info-card {
    padding: 1rem;
  }

  .site-footer__inner {
    align-items: start;
  }

  .footer-menu {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .site-header__inner {
    min-height: 64px;
  }

  .site-branding__crest {
    width: 40px;
    height: 40px;
    font-size: 0.68rem;
  }

  .site-branding__wordmark strong {
    font-size: 1.28rem;
  }

  .site-branding__wordmark em {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-navigation.is-open {
    max-height: calc(100vh - 68px);
  }

  .front-hero {
    margin-top: 0.8rem;
    padding: 1rem;
    min-height: 0;
  }

  .front-hero__copy h1 {
    font-size: 2.25rem;
  }

  .hero__actions,
  .front-hero__actions {
    gap: 0.65rem;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 1rem;
  }

  .hero-project-card__content,
  .front-panel__header,
  .service-stack,
  .highlight-grid,
  .news-preview {
    padding-inline: 0.85rem;
  }

  .service-row {
    padding: 0.85rem;
  }

  .project-filter-bar button,
  .download-filter-bar button {
    flex-basis: calc(50% - 0.25rem);
    padding-inline: 0.6rem;
    font-size: 0.7rem;
  }

  .news-excerpt p:nth-child(2) {
    display: none;
  }

  .news-list-item__media img {
    aspect-ratio: 16 / 7;
  }

  .download-overview-card {
    grid-template-columns: 1fr;
  }

  .download-overview-card__icon {
    justify-self: start;
  }

  .download-meta-row {
    gap: 0.35rem;
    font-size: 0.74rem;
  }

  .privacy-check {
    grid-template-columns: 28px 1fr;
  }

  .privacy-check input {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 1080px) {
  body.mobile-menu-open .mobile-navigation.is-open {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none;
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }

  .pvh-js .pvh-reveal,
  .pvh-js .pvh-reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .front-hero::before,
  .project-archive-hero::before,
  .download-archive-hero::before,
  .project-detail-hero::before,
  .news-hero::before,
  .contact-hero::before {
    transform: none;
  }
}

/* ============================================================
   Front page — mockup alignment (hero wordmark, bento works,
   side downloads/news, project status, inline contact)
   ============================================================ */

.front-hero__crest {
  display: grid;
  place-items: center;
}

.front-hero__crest img {
  width: min(248px, 100%);
  height: auto;
  filter: drop-shadow(0 0 42px rgba(214, 155, 62, 0.22));
  animation: pvh-crest-float 7s ease-in-out infinite;
}

@keyframes pvh-crest-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.front-hero__copy .eyebrow {
  margin: 0 0 0.5rem;
  color: var(--pvh-gold);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.front-hero__copy h1.front-hero__wordmark {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0.05em;
  color: var(--pvh-gold-light);
  text-shadow: 0 0 56px rgba(214, 155, 62, 0.26);
}

.front-hero__name {
  margin: 0.1rem 0 0.9rem;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  color: var(--pvh-gold);
  letter-spacing: 0.08em;
}

.front-hero__lead {
  color: var(--pvh-gold-light);
  font-weight: 700;
}

.front-hero__text {
  color: var(--pvh-muted);
}

/* Service rows are links now with a + affordance */
.service-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid rgba(214, 155, 62, 0.35);
  color: var(--pvh-gold-light);
  font-weight: 700;
  font-style: normal;
  transition: background 0.2s ease;
}

.service-row:hover b {
  background: rgba(214, 155, 62, 0.14);
}

/* Works bento gallery */
.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 0.9rem;
}

.works-filter button {
  min-height: 34px;
  padding: 0 0.85rem;
  border: 1px solid rgba(214, 155, 62, 0.3);
  border-radius: 999px;
  background: rgba(5, 9, 16, 0.6);
  color: var(--pvh-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.works-filter button:hover {
  color: var(--pvh-gold-light);
  border-color: rgba(214, 155, 62, 0.6);
}

.works-filter button.is-active {
  background: linear-gradient(180deg, var(--pvh-gold-light), var(--pvh-gold));
  color: #130d04;
  border-color: transparent;
}

.works-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 132px;
  gap: 0.6rem;
  padding: 0 1rem 1rem;
}

.works-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.works-card--big {
  grid-column: span 2;
  grid-row: span 2;
}

.works-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.32s ease, opacity 0.2s ease;
}

.works-card:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 155, 62, 0.55);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.works-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.works-card__body {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem;
  background: linear-gradient(0deg, rgba(3, 6, 11, 0.94), rgba(3, 6, 11, 0.2) 70%, transparent);
}

.works-card__body strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.05rem;
  color: var(--pvh-text);
}

.works-card--big .works-card__body strong {
  font-size: 1.55rem;
}

.works-card .status-pill {
  justify-self: start;
  min-height: 20px;
  font-size: 0.6rem;
}

/* Side column: downloads + news */
.front-side {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.downloads-list {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
}

.download-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(5, 9, 16, 0.68);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.download-row:hover {
  border-color: rgba(214, 155, 62, 0.5);
  background: rgba(214, 155, 62, 0.05);
}

.download-row__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(214, 155, 62, 0.4);
  color: var(--pvh-gold-light);
  font-weight: 800;
}

.download-row__text {
  display: grid;
  gap: 0.1rem;
}

.download-row__text strong {
  font-size: 0.92rem;
}

.download-row__text small {
  color: var(--pvh-muted);
  font-size: 0.76rem;
}

.version-badge {
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(53, 214, 164, 0.4);
  color: #7df0c8;
  font-size: 0.68rem;
  font-weight: 800;
  font-style: normal;
}

/* Build band: project status + inline contact */
.front-build {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 0.65rem;
  margin: 0.65rem 0 2rem;
  align-items: start;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 1rem;
}

.status-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(5, 9, 16, 0.66);
}

.status-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.status-card h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.05rem;
}

.status-card header p {
  margin: 0.12rem 0 0;
  color: var(--pvh-muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.status-card .progress-row {
  margin: 0.5rem 0 0.3rem;
}

.status-card .progress-bar {
  margin-bottom: 0.9rem;
}

.phase-steps {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}

.phase-steps li {
  position: relative;
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.phase-steps li > span {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 9, 16, 0.95);
}

.phase-steps li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.phase-steps li:first-child::before {
  display: none;
}

.phase-steps li.is-done > span {
  border-color: var(--pvh-gold);
  background: var(--pvh-gold);
}

.phase-steps li.is-done::before {
  background: var(--pvh-gold);
}

.phase-steps li.is-current > span {
  box-shadow: 0 0 0 4px rgba(214, 155, 62, 0.2);
}

.phase-steps li em {
  font-style: normal;
  font-size: 0.6rem;
  color: var(--pvh-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
}

.phase-steps li.is-done em {
  color: var(--pvh-gold-light);
}

/* Inline contact form */
.build-body {
  padding: 1rem;
}

.build-intro {
  margin: 0 0 0.8rem;
  color: var(--pvh-muted);
  font-size: 0.9rem;
}

.build-form {
  display: grid;
  gap: 0.6rem;
}

.build-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.build-form label {
  display: block;
}

.build-form input[type="text"],
.build-form input[type="email"],
.build-form select,
.build-form textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(214, 155, 62, 0.28);
  border-radius: 6px;
  background: rgba(3, 6, 11, 0.7);
  color: var(--pvh-text);
  font-size: 0.88rem;
}

.build-form textarea {
  resize: vertical;
  min-height: 84px;
}

.build-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--pvh-gold) 50%), linear-gradient(135deg, var(--pvh-gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 1.05rem, calc(100% - 12px) 1.05rem;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.build-form input:focus,
.build-form select:focus,
.build-form textarea:focus {
  outline: none;
  border-color: var(--pvh-gold);
}

.build-form__privacy {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.5rem;
  align-items: start;
  color: var(--pvh-muted);
  font-size: 0.76rem;
}

.build-form__privacy input {
  width: 20px;
  height: 20px;
}

.build-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.build-form .button {
  width: 100%;
  margin-top: 0.2rem;
}

.form-note {
  margin: 0 0 0.7rem;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
}

.form-note--success {
  border: 1px solid rgba(53, 214, 164, 0.5);
  color: #7df0c8;
  background: rgba(53, 214, 164, 0.08);
}

.form-note--error {
  border: 1px solid rgba(255, 120, 120, 0.5);
  color: #ffb4b4;
  background: rgba(255, 80, 80, 0.08);
}

.build-usps {
  list-style: none;
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0.4rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.build-usps li {
  display: grid;
  gap: 0.12rem;
  padding: 0.55rem 0;
}

.build-usps strong {
  color: var(--pvh-gold-light);
  font-size: 0.86rem;
}

.build-usps span {
  color: var(--pvh-muted);
  font-size: 0.78rem;
}

/* Related projects (single project) */
.related-projects {
  margin: 0.65rem 0 2rem;
  padding: 1rem 1rem 1.2rem;
  border: 1px solid rgba(214, 155, 62, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.94), rgba(4, 8, 14, 0.95));
}

.related-projects .front-panel__header {
  padding: 0 0 0.4rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.related-card {
  position: relative;
  display: block;
  height: 152px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.related-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.32s ease, opacity 0.2s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 155, 62, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.related-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.related-card__body {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem;
  background: linear-gradient(0deg, rgba(3, 6, 11, 0.94), rgba(3, 6, 11, 0.1) 75%, transparent);
}

.related-card__body em {
  font-style: normal;
  color: var(--pvh-gold);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.related-card__body strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1rem;
  color: var(--pvh-text);
}

/* Project status box: phase steps spacing inside the narrow sidebar */
.project-status-box .progress-bar {
  margin: 0.4rem 0 0.9rem;
}

.project-status-box .phase-steps {
  margin-bottom: 1.1rem;
}

.project-status-box .phase-steps li em {
  font-size: 0.54rem;
}

/* Front page responsive */
@media (max-width: 1080px) {
  .front-build {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .works-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 150px;
  }

  .works-card--big {
    grid-column: span 1;
    grid-row: span 1;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .build-form__row {
    grid-template-columns: 1fr;
  }

  .front-hero__crest img {
    width: 156px;
  }
}

/* =====================================================================
   1:1 PASS — Dichte (Ein-Bildschirm-Dashboard) + farbige Akzente
   ===================================================================== */

/* ---- Hero kompakt ---- */
.front-hero {
  grid-template-columns: 188px minmax(290px, 1fr) minmax(360px, 1.04fr);
  gap: 1.3rem;
  min-height: 0;
  margin: 0.7rem 0 0.6rem;
  padding: 1.1rem 1.35rem;
  align-items: center;
}
.front-hero__crest img { width: min(176px, 100%); }
.front-hero__copy .eyebrow { margin: 0 0 0.3rem; font-size: 0.66rem; letter-spacing: 0.2em; }
.front-hero__copy h1.front-hero__wordmark { font-size: clamp(2.6rem, 4.4vw, 4.3rem); }
.front-hero__name { margin: 0.05rem 0 0.5rem; font-size: clamp(1rem, 1.6vw, 1.4rem); }
.front-hero__lead { font-size: 0.92rem; margin: 0 0 0.4rem; }
.front-hero__text { font-size: 0.82rem; line-height: 1.45; margin: 0 0 0.7rem; }
.hero__actions { gap: 0.6rem; }
.front-hero .button { min-height: 40px; font-size: 0.7rem; }
.hero-project-card { min-height: 0; grid-template-columns: 1fr 132px; }
.hero-project-card__content { padding: 1rem 1.05rem; }
.hero-project-card h2 { font-size: 1.5rem; margin: 0 0 0.4rem; }
.hero-project-card > .hero-project-card__content > p { font-size: 0.82rem; margin: 0 0 0.5rem; }
.hero-project-card .progress-row { margin: 0.55rem 0 0.3rem; }
.hero-project-card .progress-bar { margin-bottom: 0.7rem; }

/* ---- Stats kompakt ---- */
.front-stats { margin-bottom: 0.6rem; }
.front-stats div { padding: 0.6rem; }
.front-stats strong { font-size: 1.25rem; }
.front-stats span { font-size: 0.6rem; }

/* ---- Dashboard kompakt ---- */
.front-dashboard { gap: 0.55rem; grid-template-columns: 312px minmax(0, 1fr) 296px; }
.front-side { gap: 0.55rem; }
.front-panel__header { padding: 0.65rem 0.8rem 0; }
.front-panel__header h2 { font-size: 0.8rem; }
.front-panel__header a { min-height: 30px; font-size: 0.7rem; }

.service-stack { padding: 0.65rem; gap: 1px; }
.service-row { padding: 0.5rem 0.65rem; gap: 0.65rem; grid-template-columns: 30px 1fr auto; }
.service-row h3 { font-size: 0.86rem; }
.service-row p { font-size: 0.71rem; line-height: 1.35; }
.service-row b { width: 22px; height: 22px; font-size: 0.85rem; }

/* farbige Service-Icons als runde Tiles */
.service-row > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.service-row:nth-child(1) > span { background: linear-gradient(180deg, rgba(157, 99, 255, 0.9), rgba(157, 99, 255, 0.45)); }
.service-row:nth-child(2) > span { background: linear-gradient(180deg, rgba(214, 155, 62, 0.9), rgba(214, 155, 62, 0.45)); }
.service-row:nth-child(3) > span { background: linear-gradient(180deg, rgba(51, 165, 232, 0.9), rgba(51, 165, 232, 0.45)); }
.service-row:nth-child(4) > span { background: linear-gradient(180deg, rgba(232, 120, 80, 0.9), rgba(232, 120, 80, 0.45)); }
.service-row:nth-child(5) > span { background: linear-gradient(180deg, rgba(53, 214, 164, 0.9), rgba(53, 214, 164, 0.45)); }
.service-row:nth-child(6) > span { background: linear-gradient(180deg, rgba(99, 150, 255, 0.9), rgba(99, 150, 255, 0.45)); }

.works-filter { padding: 0 0.8rem 0.55rem; gap: 0.3rem; }
.works-filter button { min-height: 27px; font-size: 0.62rem; padding: 0 0.6rem; }
.works-bento { padding: 0 0.8rem 0.75rem; gap: 0.5rem; grid-auto-rows: 92px; }
.works-card__body { padding: 0.55rem 0.6rem; }
.works-card__body strong { font-size: 0.88rem; }
.works-card--big .works-card__body strong { font-size: 1.2rem; }

.downloads-list { padding: 0.65rem; gap: 0.4rem; }
.download-row { padding: 0.5rem 0.6rem; gap: 0.55rem; grid-template-columns: 30px 1fr auto; }
.download-row__icon { width: 30px; height: 30px; }
.download-row__text strong { font-size: 0.8rem; }
.download-row__text small { font-size: 0.68rem; }

.news-preview { padding: 0.65rem; gap: 0.4rem; }
.news-preview article { padding: 0.6rem; }
.news-preview h3 { font-size: 0.84rem; margin: 0.15rem 0; }
.news-preview p { font-size: 0.74rem; line-height: 1.4; }
.news-preview time { font-size: 0.66rem; }

/* ---- Build-Band kompakt ---- */
.front-build { margin: 0.55rem 0 1.4rem; gap: 0.55rem; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); }
.status-grid { padding: 0.65rem; gap: 0.5rem; }
.status-card { padding: 0.65rem 0.7rem; }
.status-card h3 { font-size: 0.9rem; }
.status-card header { margin-bottom: 0.35rem; }
.status-card header p { font-size: 0.62rem; }
.status-card .progress-row { margin: 0.3rem 0 0.2rem; font-size: 0.72rem; }
.status-card .progress-bar { margin-bottom: 0.55rem; height: 5px; }
.phase-steps li em { font-size: 0.5rem; }

.build-body { padding: 0.65rem 0.8rem; }
.build-intro { font-size: 0.8rem; margin-bottom: 0.55rem; }
.build-form { gap: 0.5rem; }
.build-form input[type="text"], .build-form input[type="email"], .build-form select, .build-form textarea {
  padding: 0.5rem 0.6rem; font-size: 0.82rem;
}
.build-form textarea { min-height: 60px; }
.build-form .button { min-height: 42px; }
.build-usps { padding: 0.3rem 0.8rem 0.8rem; }
.build-usps li { padding: 0.4rem 0; }
.build-usps strong { font-size: 0.8rem; }
.build-usps span { font-size: 0.72rem; }

/* farbige Phasen-Stepper (Idee→Release in Akzentfarben) */
.phase-steps li.is-done:nth-child(1) > span { border-color: #d69b3e; background: #d69b3e; }
.phase-steps li.is-done:nth-child(2) > span { border-color: #9d63ff; background: #9d63ff; }
.phase-steps li.is-done:nth-child(3) > span { border-color: #33a5e8; background: #33a5e8; }
.phase-steps li.is-done:nth-child(4) > span { border-color: #35d6a4; background: #35d6a4; }
.phase-steps li.is-done:nth-child(5) > span { border-color: #ffe0a0; background: #ffe0a0; }

/* ---- Archiv-Heros: Wappen-Wasserzeichen + kompakter ---- */
.project-archive-hero,
.download-archive-hero,
.project-detail-hero {
  padding: 2rem clamp(1.5rem, 5vw, 3.5rem) 2.2rem;
  margin: 0.8rem 0 0.7rem;
}
.hero-watermark {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(300px, 55%);
  opacity: 0.07;
  pointer-events: none;
}
.project-archive-hero > .hero-watermark,
.download-archive-hero > .hero-watermark { z-index: 0; }

/* Archiv-Grids etwas dichter */
.project-card-grid { gap: 0.7rem; }
.project-overview-card__body { padding: 0.85rem 0.95rem; }
.project-overview-card__body h2 { font-size: 1.15rem; margin: 0.3rem 0; }
.project-overview-card__body p { font-size: 0.82rem; }
.download-card-grid { gap: 0.7rem; }

/* =====================================================================
   Live fidelity pass 2026-06-20: match supplied dark-gold mockups tighter
   ===================================================================== */
body {
  background:
    radial-gradient(circle at 78% 24%, rgba(122, 59, 214, 0.18), transparent 30rem),
    radial-gradient(circle at 18% 8%, rgba(214, 155, 62, 0.1), transparent 22rem),
    #03070d;
}

.site-topbar {
  display: none;
}

.site-header__inner,
.site-topbar__inner,
.site-footer__inner,
.site-main {
  width: min(1780px, calc(100% - 52px));
}

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

.site-branding__crest {
  width: 54px;
  height: 58px;
}

.site-branding__wordmark strong {
  font-size: 2.45rem;
}

.site-menu a {
  min-height: 38px;
  padding-inline: 0.95rem;
  font-size: 0.82rem;
}

.front-hero {
  grid-template-columns: 300px minmax(390px, 0.7fr) minmax(640px, 1fr);
  gap: 1.45rem;
  margin-top: 0.55rem;
  padding: 1.25rem 1.45rem;
  min-height: 346px;
  border-radius: 0;
}

.front-hero__crest img {
  width: min(282px, 100%);
}

.front-hero__copy h1.front-hero__wordmark {
  font-size: clamp(4.4rem, 7vw, 7.3rem);
}

.front-hero__name {
  font-size: clamp(1.2rem, 1.8vw, 1.85rem);
}

.front-hero__lead,
.front-hero__text {
  max-width: 560px;
}

.hero-project-card {
  grid-template-columns: 260px 1fr;
  min-height: 286px;
  border-color: rgba(214, 155, 62, 0.72);
}

.hero-project-card img {
  opacity: 0.82;
}

.front-stats {
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 0.55rem;
}

.front-stats div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.45rem;
}

.front-stats strong {
  font-size: 1.35rem;
}

.front-dashboard {
  grid-template-columns: 450px minmax(0, 1fr) 510px;
  gap: 0.55rem;
}

.front-panel {
  border-radius: 8px;
}

.front-panel__header {
  padding: 0.72rem 0.9rem 0;
}

.service-stack,
.downloads-list,
.news-preview {
  padding: 0.75rem;
}

.service-row {
  min-height: 58px;
}

.works-bento {
  grid-auto-rows: 112px;
}

.works-card--big {
  grid-row: span 2;
}

.front-side .front-panel--news .news-preview article {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 62px;
}

.front-side .front-panel--news .news-preview article::before {
  content: "";
  display: block;
  width: 58px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(214, 155, 62, 0.28);
  background:
    radial-gradient(circle at 35% 35%, rgba(157, 99, 255, 0.65), transparent 40%),
    linear-gradient(135deg, rgba(214, 155, 62, 0.3), rgba(4, 8, 14, 0.9));
}

.front-side .front-panel--news .news-preview time {
  grid-column: 3;
  grid-row: 1;
  white-space: nowrap;
}

.front-side .front-panel--news .news-preview h3,
.front-side .front-panel--news .news-preview p {
  grid-column: 2;
}

.front-build {
  grid-template-columns: minmax(0, 1.2fr) minmax(520px, 1fr);
}

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

.status-card {
  min-height: 154px;
}

.build-usps {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.project-archive-hero,
.download-archive-hero {
  display: grid;
  justify-items: center;
  min-height: 270px;
  margin-top: 0.55rem;
  padding: 2.1rem clamp(1rem, 4vw, 3rem);
  text-align: center;
  background:
    radial-gradient(circle at 68% 54%, rgba(157, 99, 255, 0.3), transparent 18rem),
    radial-gradient(circle at 84% 66%, rgba(214, 155, 62, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(5, 9, 16, 0.96), rgba(8, 13, 22, 0.86));
}

.project-archive-hero h1,
.download-archive-hero h1 {
  margin: 0.25rem 0 0.35rem;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(4.4rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--pvh-gold-light);
}

.project-filter-bar,
.download-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(214, 155, 62, 0.32);
  border-radius: 8px;
  background: rgba(9, 14, 23, 0.86);
}

.project-filter-bar button,
.download-filter-bar button {
  min-height: 40px;
  padding-inline: 1.1rem;
  border-radius: 6px;
}

.project-featured-strip {
  display: grid;
  grid-template-columns: 580px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 0.55rem;
  padding: 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(214, 155, 62, 0.62);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 54%, rgba(214, 155, 62, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(7, 12, 20, 0.94), rgba(4, 8, 14, 0.98));
}

.project-featured-strip__media {
  display: block;
  height: 168px;
  overflow: hidden;
  border-radius: 7px;
}

.project-featured-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.project-featured-strip__body h2 {
  margin: 0.2rem 0 0.35rem;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--pvh-gold-light);
}

.project-featured-strip__body p {
  max-width: 760px;
  margin: 0 0 0.6rem;
  color: var(--pvh-muted);
}

.project-featured-strip .progress-row {
  max-width: 440px;
  margin-top: 0.65rem;
}

.project-featured-strip .progress-bar {
  max-width: 440px;
  margin-bottom: 0;
}

.project-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.project-overview-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 150px;
}

.project-overview-card__image img {
  height: 100%;
  min-height: 150px;
  aspect-ratio: auto;
}

.project-overview-card__body {
  padding: 0.72rem 0.8rem;
}

.project-overview-card h2 {
  font-size: 1.05rem;
}

.project-overview-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.project-overview-card .button {
  min-height: 34px;
  padding-inline: 0.75rem;
  font-size: 0.68rem;
}

.download-page-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

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

@media (max-width: 1500px) {
  .site-header__inner,
  .site-topbar__inner,
  .site-footer__inner,
  .site-main {
    width: min(1320px, calc(100% - 36px));
  }

  .front-hero {
    grid-template-columns: 210px minmax(320px, 1fr) minmax(420px, 1.05fr);
  }

  .front-hero__crest img {
    width: 190px;
  }

  .front-dashboard {
    grid-template-columns: 312px minmax(0, 1fr) 296px;
  }

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

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

@media (min-width: 1081px) and (max-width: 1500px) {
  .front-side .front-panel--news .news-preview article {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 0.55rem;
    min-height: 76px;
    max-height: 92px;
    padding: 0.5rem;
  }

  .front-side .front-panel--news .news-preview article::before {
    width: 52px;
    height: 40px;
  }

  .front-side .front-panel--news .news-preview h3 {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .front-side .front-panel--news .news-preview p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.15rem;
    font-size: 0.66rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .front-side .front-panel--news .news-preview time {
    align-self: start;
    font-size: 0.58rem;
  }

  .project-overview-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .project-overview-card__image img {
    min-height: 148px;
  }
}

@media (max-width: 1080px) {
  .site-header__inner {
    min-height: 70px;
  }

  .front-hero,
  .front-dashboard,
  .front-build,
  .project-featured-strip,
  .download-page-layout {
    grid-template-columns: 1fr;
  }

  .front-hero__crest {
    display: none;
  }

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

@media (max-width: 640px) {
  .site-header__inner,
  .site-topbar__inner,
  .site-footer__inner,
  .site-main {
    width: min(100% - 24px, 100%);
  }

  .front-hero {
    padding: 1rem;
  }

  .front-stats,
  .status-grid,
  .project-card-grid,
  .download-card-grid,
  .build-usps {
    grid-template-columns: 1fr;
  }

  .project-archive-hero h1,
  .download-archive-hero h1 {
    font-size: 3.25rem;
  }
}

/* Download and project detail fidelity */
.download-archive-hero {
  min-height: 238px;
}

.featured-download {
  grid-template-columns: 430px minmax(0, 1fr) auto;
  gap: 1rem;
  margin-bottom: 0.65rem;
  padding: 0.75rem;
}

.featured-download__media {
  height: 166px;
  overflow: hidden;
  border-radius: 7px;
}

.featured-download__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-download h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

.download-overview-card {
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 184px;
  padding: 0.85rem;
}

.download-overview-card__icon {
  width: 44px;
  height: 44px;
}

.download-overview-card h2 {
  font-size: 1.28rem;
}

.download-overview-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.download-sidebar {
  display: grid;
  gap: 0.7rem;
}

.download-sidebar-card {
  padding: 1rem;
}

.project-detail-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  min-height: 390px;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.project-detail-hero h1 {
  font-size: clamp(3.6rem, 7vw, 6.3rem);
  line-height: 0.92;
}

.project-detail-hero p:not(.eyebrow) {
  max-width: 620px;
}

.project-detail-hero__media {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(214, 155, 62, 0.55);
  border-radius: 8px;
}

.project-detail-hero__media img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  opacity: 0.86;
}

.project-detail-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 0.75rem;
}

.project-detail-main {
  display: grid;
  gap: 0.7rem;
}

.project-section-card {
  padding: 1rem 1.1rem;
}

.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.feature-list article {
  min-height: 82px;
  padding: 0.75rem;
}

.tech-list--large {
  margin-bottom: 0.7rem;
}

.project-status-sidebar {
  position: sticky;
  top: 92px;
}

.project-status-box {
  padding: 1rem;
}

.project-status-box dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 0.85rem;
}

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

.mockup-grid img {
  aspect-ratio: 16 / 9;
}

.related-projects {
  margin-top: 0.75rem;
}

@media (max-width: 1500px) {
  .featured-download {
    grid-template-columns: 360px minmax(0, 1fr) auto;
  }

  .download-overview-card {
    min-height: 170px;
  }

  .project-detail-hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  }

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

@media (max-width: 1080px) {
  .featured-download,
  .project-detail-hero,
  .project-detail-layout {
    grid-template-columns: 1fr;
  }

  .project-status-sidebar {
    position: static;
  }

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

@media (max-width: 640px) {
  .featured-download,
  .download-overview-card {
    grid-template-columns: 1fr;
  }

  .feature-list,
  .mockup-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Bento: großes Bild LINKS + 2x2 Kacheln rechts (wie Mockup) ---- */
.works-bento {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 104px;
}
.works-card--big {
  grid-column: span 2;
  grid-row: span 2;
}

/* ---- Stats-Leiste mit Icons (wie Mockup) ---- */
.front-stats div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
}
.front-stats .stat-ic {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(214, 155, 62, 0.42);
  color: var(--pvh-gold-light);
  flex: 0 0 auto;
}
.front-stats .stat-ic svg { width: 15px; height: 15px; }
.front-stats .stat-text { display: grid; text-align: left; }
.front-stats .stat-text strong { font-size: 1.2rem; line-height: 1.05; color: var(--pvh-gold-light); }
.front-stats .stat-text > span { font-size: 0.58rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--pvh-muted); }

/* Startseite fidelity pass 2: keep the dashboard close to the supplied one-screen mockup. */
@media (min-width: 1180px) {
  .front-hero {
    min-height: 326px;
    padding-block: 1rem;
  }

  .front-hero__crest img {
    width: min(250px, 100%);
  }

  .hero-project-card {
    min-height: 258px;
  }

  .hero-project-card__content {
    padding: 1rem 1.05rem;
  }

  .hero-project-card__content p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .front-dashboard {
    grid-template-columns: 430px minmax(0, 1fr) 430px;
    align-items: start;
  }

  .front-panel__header {
    padding: 0.58rem 0.78rem 0;
  }

  .service-stack,
  .downloads-list,
  .news-preview {
    padding: 0.58rem;
    gap: 0.32rem;
  }

  .service-row {
    grid-template-columns: 34px 1fr 24px;
    min-height: 48px;
    gap: 0.62rem;
    padding: 0.42rem 0.58rem;
  }

  .service-row > span:first-child {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    font-size: 0.82rem;
  }

  .service-row h3 {
    font-size: 0.86rem;
  }

  .service-row p {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .service-row b {
    width: 22px;
    height: 22px;
  }

  .works-filter {
    padding: 0 0.72rem 0.45rem;
  }

  .works-bento {
    grid-auto-rows: 92px;
    gap: 0.42rem;
    padding: 0 0.72rem 0.72rem;
  }

  .works-card__body {
    gap: 0.2rem;
    padding: 0.5rem 0.58rem;
  }

  .works-card__body strong {
    font-size: 0.84rem;
    line-height: 1.12;
  }

  .works-card--big .works-card__body strong {
    font-size: 1.12rem;
  }

  .download-row {
    grid-template-columns: 30px 1fr auto;
    gap: 0.52rem;
    min-height: 54px;
    padding: 0.48rem 0.56rem;
  }

  .download-row__icon {
    width: 30px;
    height: 30px;
  }

  .download-row__text strong {
    font-size: 0.78rem;
    line-height: 1.12;
  }

  .download-row__text small {
    font-size: 0.66rem;
    line-height: 1.18;
  }

  .version-badge {
    padding: 0.16rem 0.4rem;
    font-size: 0.64rem;
  }

  .front-side .front-panel--news .news-preview article {
    grid-template-columns: 44px 1fr auto;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.35rem 0;
  }

  .front-side .front-panel--news .news-preview article::before {
    width: 44px;
    height: 34px;
  }

  .front-side .front-panel--news .news-preview h3 {
    font-size: 0.72rem;
    line-height: 1.08;
  }

  .front-side .front-panel--news .news-preview p {
    display: none;
  }

  .front-side .front-panel--news .news-preview time {
    font-size: 0.58rem;
  }

  .front-build {
    margin-top: 0.55rem;
  }

  .front-panel--contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 172px;
    align-items: stretch;
  }

  .front-panel--contact .front-panel__header {
    grid-column: 1 / -1;
  }

  .front-panel--contact .build-body {
    padding: 0.58rem 0.72rem 0.72rem;
  }

  .front-panel--contact .build-intro {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
  }

  .front-panel--contact .build-form {
    gap: 0.38rem;
  }

  .front-panel--contact .build-form__row {
    gap: 0.42rem;
  }

  .front-panel--contact .build-form input[type="text"],
  .front-panel--contact .build-form input[type="email"],
  .front-panel--contact .build-form select,
  .front-panel--contact .build-form textarea {
    padding: 0.46rem 0.56rem;
    font-size: 0.74rem;
  }

  .front-panel--contact .build-form textarea {
    min-height: 46px;
  }

  .front-panel--contact .build-form__privacy {
    grid-template-columns: 18px 1fr;
    gap: 0.38rem;
    font-size: 0.66rem;
  }

  .front-panel--contact .build-form__privacy input {
    width: 17px;
    height: 17px;
  }

  .front-panel--contact .build-form .button {
    min-height: 38px;
    margin-top: 0.08rem;
  }

  .front-panel--contact .build-usps {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.32rem;
    padding: 0.72rem 0.72rem 0.72rem 0.86rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  .front-panel--contact .build-usps li {
    padding: 0.28rem 0;
  }

  .front-panel--contact .build-usps strong {
    font-size: 0.72rem;
  }

  .front-panel--contact .build-usps span {
    font-size: 0.66rem;
    line-height: 1.22;
  }

  .status-card {
    min-height: 132px;
    padding: 0.62rem;
  }

  .status-card h3 {
    font-size: 0.78rem;
  }

  .status-card p,
  .progress-row {
    font-size: 0.66rem;
  }

  .phase-steps em {
    font-size: 0.5rem;
  }
}
