:root {
  --gdds-bg: #0a0a0b;
  --gdds-bg-soft: #171719;
  --gdds-card: #111214;
  --gdds-light: #f6f2eb;
  --gdds-light-soft: #d8c6a4;
  --gdds-line: rgba(255, 255, 255, 0.1);
  --gdds-text: #171411;
  --gdds-muted: #6c645a;
  --gdds-gold: #b88a45;
  --gdds-gold-strong: #dfb46d;
  --gdds-shell: min(1280px, calc(100vw - 48px));
  --gdds-shadow: 0 24px 70px rgba(15, 12, 8, 0.12);
  --gdds-radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f6f2eb;
  color: var(--gdds-text);
  font-family: "Manrope", "Noto Sans SC", "PingFang SC", sans-serif;
  line-height: 1.6;
}

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

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

.gdds-shell {
  width: var(--gdds-shell);
  margin: 0 auto;
}

.gdds-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 9, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gdds-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.gdds-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.gdds-logo__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(184, 138, 69, 0.28), rgba(255, 255, 255, 0.08));
  color: var(--gdds-gold-strong);
}

.gdds-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gdds-nav__list a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.gdds-nav__list a:hover,
.gdds-nav__list .current-menu-item > a {
  color: #fff;
}

.gdds-header__actions {
  display: flex;
  gap: 12px;
}

.gdds-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ddb26a, #b28340);
  color: #17120c;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(181, 133, 61, 0.24);
}

.gdds-button--ghost,
.gdds-button--ghost-light {
  background: transparent;
  box-shadow: none;
}

.gdds-button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.gdds-button--ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(15, 15, 15, 0.28);
}

.gdds-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
}

.gdds-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

.gdds-hero {
  position: relative;
  min-height: 88vh;
  color: #fff;
  overflow: hidden;
  background: #080808;
}

.gdds-hero__media,
.gdds-hero__overlay {
  position: absolute;
  inset: 0;
}

.gdds-hero__media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.gdds-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.gdds-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 88vh;
  padding: 140px 0 70px;
}

.gdds-hero__copy {
  max-width: 720px;
}

.gdds-kicker {
  margin: 0 0 12px;
  color: var(--gdds-gold-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gdds-hero h1,
.gdds-page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.gdds-hero p:not(.gdds-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.gdds-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.gdds-hero__highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.gdds-stat-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.gdds-stat-card strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.gdds-stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.gdds-section,
.gdds-band {
  padding: 88px 0;
}

.gdds-section--light {
  background: #fffdf9;
}

.gdds-section--dark,
.gdds-band,
.gdds-footer {
  background: var(--gdds-bg);
  color: #fff;
}

.gdds-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.gdds-section__head h2,
.gdds-band__intro h2,
.gdds-footer__cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.gdds-arrow-link {
  color: #8d6834;
  font-weight: 700;
}

.gdds-band .gdds-arrow-link,
.gdds-section--dark .gdds-arrow-link {
  color: var(--gdds-gold-strong);
}

.gdds-collection-grid,
.gdds-product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gdds-product-grid--catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.gdds-collection-card,
.gdds-product-card,
.gdds-post-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(26, 21, 15, 0.08);
  background: #fff;
  box-shadow: var(--gdds-shadow);
}

.gdds-collection-card {
  padding: 18px;
}

.gdds-collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7f7f7, #efefef);
}

.gdds-collection-card h3 {
  margin: 16px 0 4px;
  font-size: 18px;
}

.gdds-band__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 48px;
  align-items: center;
}

.gdds-band__intro p:not(.gdds-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

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

.gdds-band__features div {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gdds-band__features strong,
.gdds-metric strong {
  display: block;
  font-size: 20px;
  color: #fff;
}

.gdds-band__features span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

.gdds-product-card__image {
  display: block;
  background: linear-gradient(180deg, #fafafa, #f1f1f1);
}

.gdds-product-card__image img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: contain;
  padding: 30px;
}

.gdds-product-card--catalog {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gdds-product-card--catalog .gdds-product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid rgba(26, 21, 15, 0.06);
}

.gdds-product-card--catalog .gdds-product-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 26px;
}

.gdds-product-card--catalog .gdds-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 24px;
}

.gdds-product-card--catalog .gdds-product-card__body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.gdds-product-card--catalog .gdds-product-card__body p {
  margin: 0;
  color: var(--gdds-muted);
  font-size: 15px;
}

.gdds-product-card__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 39, 64, 0.07);
  color: #174669;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gdds-product-card--catalog .gdds-arrow-link {
  margin-top: auto;
}

.gdds-product-card__body {
  padding: 22px;
}

.gdds-product-card__body h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.gdds-product-card__body ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--gdds-muted);
  font-size: 14px;
}

.gdds-factory-layout {
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  gap: 28px;
  align-items: stretch;
}

.gdds-factory-copy {
  padding: 36px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gdds-factory-copy p:not(.gdds-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.gdds-factory-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 16px;
}

.gdds-factory-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 180px;
}

.gdds-factory-card:first-child {
  grid-row: span 2;
}

.gdds-factory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gdds-factory-card__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
}

.gdds-factory-card__caption h3 {
  margin: 0;
  color: #fff;
}

.gdds-cert-grid,
.gdds-metrics {
  display: grid;
  gap: 16px;
}

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

.gdds-cert-card,
.gdds-metric {
  display: grid;
  place-items: center;
  min-height: 96px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--gdds-shadow);
  font-size: 28px;
  font-weight: 800;
}

.gdds-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 32px;
}

.gdds-metric {
  padding: 26px 20px;
}

.gdds-metric strong {
  color: var(--gdds-gold);
  font-size: 30px;
}

.gdds-metric span {
  margin-top: 8px;
  color: var(--gdds-muted);
  text-align: center;
}

.gdds-footer__cta {
  padding: 62px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gdds-footer__cta-inner,
.gdds-footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.gdds-footer__grid {
  align-items: flex-start;
  padding: 38px 0;
}

.gdds-footer__grid > div {
  flex: 1;
}

.gdds-footer__menu,
.gdds-footer__contact {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
}

.gdds-footer__menu li,
.gdds-footer__contact li {
  margin-bottom: 10px;
}

.gdds-footer__bottom {
  padding: 0 0 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.gdds-page-hero {
  padding: 88px 0 32px;
  background: linear-gradient(180deg, #121316, #0b0b0c);
  color: #fff;
}

.gdds-page-hero--poster {
  padding: 0;
}

.gdds-product-hero {
  max-width: 1100px;
}

.gdds-product-hero__poster {
  max-width: 100%;
}

.gdds-product-hero__poster img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

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

.gdds-product-poster-hero {
  background: #0a0a0b;
}

.gdds-product-poster-hero__media {
  width: 100%;
}

.gdds-product-poster-hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

.gdds-page-content {
  max-width: 900px;
}

.gdds-page-content--full {
  max-width: none;
}

.gdds-page-content h2,
.gdds-page-content h3 {
  margin-top: 1.4em;
}

.gdds-stack {
  display: grid;
  gap: 24px;
}

.gdds-post-card {
  padding: 28px;
}

.gdds-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: start;
}

.gdds-product-detail__media {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--gdds-shadow);
  position: sticky;
  top: 110px;
}

.gdds-product-detail__media img {
  width: 100%;
  height: auto;
  padding: 36px;
}

.gdds-product-detail__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}

.gdds-product-detail__specs div {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--gdds-shadow);
}

.gdds-product-detail__specs span {
  display: block;
  color: var(--gdds-muted);
  font-size: 14px;
}

.gdds-product-detail__specs strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.gdds-product-hero__summary {
  max-width: 840px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.gdds-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.gdds-filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 20, 17, 0.1);
  background: #fff;
  color: var(--gdds-text);
  font-weight: 700;
}

.gdds-filter-pill.current {
  border-color: rgba(23, 70, 105, 0.18);
  background: #143956;
  color: #fff;
}

.gdds-product-detail__content {
  display: grid;
  gap: 24px;
}

.gdds-product-detail__bottom {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.gdds-product-detail__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.gdds-product-detail__badges,
.gdds-product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gdds-product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(23, 20, 17, 0.08);
  color: var(--gdds-muted);
  font-size: 13px;
  font-weight: 700;
}

.gdds-product-badge--primary {
  background: #143956;
  border-color: #143956;
  color: #fff;
}

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

.gdds-product-support-card,
.gdds-product-aside__card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  background: #fff;
  box-shadow: var(--gdds-shadow);
}

.gdds-product-support-card span {
  display: block;
  color: #174669;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gdds-product-support-card strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.gdds-product-support-card p {
  margin: 12px 0 0;
  color: var(--gdds-muted);
}

.gdds-product-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  align-items: start;
  gap: 22px;
}

.gdds-product-description {
  min-width: 0;
  padding: 30px 34px 38px;
  border-radius: 24px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.98) 100%);
  box-shadow: var(--gdds-shadow);
}

.gdds-product-description__head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

.gdds-product-description__head h2 {
  margin: 0;
}

.gdds-product-description .gdds-page-content > :first-child {
  margin-top: 0;
}

.gdds-product-description .gdds-page-content > :last-child {
  margin-bottom: 0;
}

.gdds-product-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 110px;
}

.gdds-product-aside__card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gdds-muted);
}

.gdds-product-aside__card .gdds-kicker {
  margin-bottom: 14px;
}

.gdds-product-aside__card li + li {
  margin-top: 10px;
}

.gdds-product-related {
  padding-top: 12px;
}

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

.gdds-tmall-desc-gallery {
  display: grid;
  gap: 16px;
}

.gdds-tmall-desc-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  background: #fff;
}

.gdds-tmall-desc-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
}

.gdds-pagination {
  margin-top: 30px;
}

.gdds-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gdds-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  background: #fff;
  color: var(--gdds-text);
  font-weight: 700;
  box-shadow: var(--gdds-shadow);
}

.gdds-pagination .page-numbers.current {
  background: #143956;
  border-color: #143956;
  color: #fff;
}

.gdds-button--small {
  min-height: 46px;
  padding-inline: 20px;
}

.gdds-home-hero {
  position: relative;
  min-height: 92vh;
  color: #fff;
  overflow: hidden;
  background: #0e1824;
}

.gdds-home-hero__media,
.gdds-home-hero__overlay {
  position: absolute;
  inset: 0;
}

.gdds-home-hero__media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.03);
}

.gdds-home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 19, 32, 0.78) 0%, rgba(9, 28, 44, 0.54) 42%, rgba(8, 22, 35, 0.34) 100%),
    linear-gradient(180deg, rgba(9, 21, 34, 0.18) 0%, rgba(9, 24, 38, 0.54) 100%);
}

.gdds-home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  align-items: center;
  min-height: 92vh;
  padding: 124px 0 80px;
}

.gdds-home-hero__copy {
  max-width: 760px;
}

.gdds-home-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.gdds-home-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.gdds-home-hero__copy > p:not(.gdds-home-hero__eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.gdds-home-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.gdds-home-hero__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.gdds-capability {
  background: #edf3f9;
}

.gdds-capability__grid {
  display: grid;
  grid-template-columns: 1.12fr 1.88fr;
  min-height: 740px;
}

.gdds-capability__feature {
  position: relative;
  min-height: 740px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gdds-capability__feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 20, 33, 0.12) 0%, rgba(8, 16, 29, 0.76) 100%);
}

.gdds-capability__feature-copy {
  position: absolute;
  inset-inline: 36px;
  bottom: 36px;
  z-index: 1;
  color: #fff;
}

.gdds-capability__feature-copy h2,
.gdds-product-focus__lead h2,
.gdds-about-home__content h2,
.gdds-news-home h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
}

.gdds-capability__feature-copy p:not(.gdds-kicker) {
  margin: 18px 0 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.84);
}

.gdds-capability__feature-copy .gdds-button {
  margin-top: 24px;
}

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

.gdds-capability__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 370px;
  padding: 58px 54px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), #fff);
  border-left: 1px solid rgba(19, 39, 61, 0.08);
  border-bottom: 1px solid rgba(19, 39, 61, 0.08);
}

.gdds-capability__card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.16;
  color: #162433;
}

.gdds-capability__card p:not(.gdds-kicker) {
  margin: 20px 0 0;
  font-size: 15px;
  color: var(--gdds-muted);
}

.gdds-capability__card .gdds-arrow-link {
  margin-top: 26px;
  color: #d62323;
}

.gdds-product-focus {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #12263a;
}

.gdds-product-focus__backdrop,
.gdds-product-focus__overlay {
  position: absolute;
  inset: 0;
}

.gdds-product-focus__backdrop {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gdds-product-focus__overlay {
  background: linear-gradient(90deg, rgba(13, 24, 37, 0.88) 0%, rgba(17, 34, 54, 0.72) 34%, rgba(18, 38, 58, 0.38) 100%);
}

.gdds-product-focus__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
  padding: 82px 0 68px;
}

.gdds-product-focus__lead p:not(.gdds-kicker) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.gdds-product-focus__main {
  margin-top: 34px;
}

.gdds-product-focus__main h3 {
  margin: 0;
  font-size: 28px;
}

.gdds-product-focus__main p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.gdds-product-focus__main .gdds-button {
  margin-top: 22px;
}

.gdds-product-focus__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.gdds-product-chip {
  padding: 14px 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.gdds-product-chip__thumb {
  display: block;
  min-height: 160px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.gdds-product-chip__thumb img {
  width: 100%;
  min-height: 160px;
  object-fit: contain;
  padding: 18px;
}

.gdds-product-chip h3 {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.35;
}

.gdds-product-chip h3 a {
  color: #fff;
}

.gdds-about-home {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  background: #f6fbff;
}

.gdds-about-home__media {
  min-height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gdds-about-home__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 54px;
}

.gdds-about-home__content h3 {
  margin: 14px 0 0;
  font-size: 34px;
  line-height: 1.18;
  color: #162433;
}

.gdds-about-home__content p:not(.gdds-kicker) {
  margin: 20px 0 0;
  color: var(--gdds-muted);
}

.gdds-about-home__content .gdds-button {
  margin-top: 24px;
}

.gdds-about-home__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(22, 36, 51, 0.08);
}

.gdds-about-home__stat {
  padding: 26px 20px 14px 0;
}

.gdds-about-home__stat strong {
  display: block;
  color: #0f1c29;
  font-size: 54px;
  line-height: 1;
}

.gdds-about-home__stat span {
  display: block;
  margin-top: 10px;
  color: var(--gdds-muted);
}

.gdds-news-home {
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 20% 0%, rgba(191, 219, 246, 0.45), transparent 28%),
    linear-gradient(180deg, #eef5fb 0%, #edf4fb 100%);
}

.gdds-section__head--news {
  align-items: center;
}

.gdds-news-home__grid {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  gap: 28px;
}

.gdds-news-home__feature,
.gdds-news-home__card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--gdds-shadow);
}

.gdds-news-home__feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.gdds-news-home__feature-image {
  min-height: 360px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gdds-news-home__feature-body,
.gdds-news-home__card {
  padding: 30px;
}

.gdds-news-home__date {
  display: inline-block;
  color: #d22222;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gdds-news-home__feature-body h3,
.gdds-news-home__card h3 {
  margin: 12px 0 0;
  font-size: 26px;
  line-height: 1.2;
  color: #162433;
}

.gdds-news-home__feature-body p,
.gdds-news-home__card p {
  margin: 14px 0 0;
  color: var(--gdds-muted);
}

.gdds-news-home__feature-body .gdds-arrow-link,
.gdds-news-home__card .gdds-arrow-link {
  display: inline-flex;
  margin-top: 20px;
  color: #d22222;
}

.gdds-news-home__list {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gdds-cert-grid--compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .gdds-collection-grid,
  .gdds-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .gdds-factory-layout,
  .gdds-band__inner,
  .gdds-product-detail,
  .gdds-home-hero__inner,
  .gdds-capability__grid,
  .gdds-product-focus__inner,
  .gdds-about-home,
  .gdds-news-home__grid,
  .gdds-news-home__feature {
    grid-template-columns: 1fr;
  }

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

  .gdds-product-focus__rail,
  .gdds-about-home__stats,
  .gdds-cert-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gdds-capability__cards {
    grid-template-columns: 1fr;
  }

  .gdds-capability__feature,
  .gdds-capability__card,
  .gdds-about-home__media {
    min-height: 520px;
  }

  .gdds-factory-card:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .gdds-header__actions {
    display: none;
  }

  .gdds-mobile-toggle {
    display: inline-flex;
  }

  .gdds-nav {
    position: absolute;
    top: 84px;
    left: 12px;
    right: 12px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(12, 12, 13, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

  .gdds-nav.is-open {
    display: block;
  }

  .gdds-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gdds-hero__highlights,
  .gdds-metrics,
  .gdds-band__features,
  .gdds-footer__cta-inner,
  .gdds-footer__grid {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .gdds-hero__actions,
  .gdds-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gdds-collection-grid,
  .gdds-product-grid,
  .gdds-cert-grid,
  .gdds-hero__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gdds-home-hero__side {
    display: none;
  }

  .gdds-product-focus__rail,
  .gdds-cert-grid--compact,
  .gdds-about-home__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gdds-news-home__feature-image {
    min-height: 280px;
  }

  .gdds-news-home__feature-body h3,
  .gdds-news-home__card h3 {
    font-size: 22px;
  }

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

@media (max-width: 560px) {
  .gdds-shell {
    width: min(100vw - 28px, 1280px);
  }

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

  .gdds-nav {
    top: 76px;
  }

  .gdds-section,
  .gdds-band {
    padding: 68px 0;
  }

  .gdds-collection-grid,
  .gdds-product-grid,
  .gdds-cert-grid,
  .gdds-metrics,
  .gdds-band__features,
  .gdds-footer__cta-inner,
  .gdds-footer__grid,
  .gdds-hero__highlights,
  .gdds-product-detail__specs,
  .gdds-factory-grid,
  .gdds-product-focus__rail,
  .gdds-about-home__stats,
  .gdds-cert-grid--compact {
    grid-template-columns: 1fr;
  }

  .gdds-product-grid--catalog {
    grid-template-columns: 1fr;
  }

  .gdds-home-hero {
    min-height: auto;
  }

  .gdds-home-hero__inner {
    min-height: auto;
    padding: 124px 0 72px;
  }

  .gdds-capability__feature-copy,
  .gdds-about-home__content,
  .gdds-news-home__feature-body,
  .gdds-news-home__card,
  .gdds-capability__card {
    padding: 30px 24px;
  }

  .gdds-capability__feature,
  .gdds-capability__card,
  .gdds-about-home__media {
    min-height: 420px;
  }

  .gdds-news-home__feature {
    grid-template-columns: 1fr;
  }

  .gdds-factory-card:first-child {
    grid-column: auto;
  }
}

.gdds-home-hero--showroom {
  min-height: 92vh;
  background: #080808;
}

.gdds-home-hero--showroom .gdds-home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.88) 0%, rgba(5, 5, 6, 0.6) 38%, rgba(5, 5, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.18) 0%, rgba(5, 5, 6, 0.58) 100%);
}

.gdds-home-hero--showroom .gdds-home-hero__inner {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 126px 0 78px;
}

.gdds-home-hero--showroom .gdds-home-hero__copy {
  max-width: 620px;
}

.gdds-home-hero--showroom .gdds-home-hero__eyebrow {
  color: var(--gdds-gold-strong);
}

.gdds-home-hero--showroom .gdds-home-hero h1 {
  font-size: clamp(50px, 6vw, 76px);
}

.gdds-home-hero__highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin-top: 44px;
}

.gdds-home-hero__highlight {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.gdds-home-hero__highlight strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.gdds-home-hero__highlight span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.gdds-home-collections,
.gdds-home-products,
.gdds-home-proof {
  padding: 84px 0;
  background: #f7f3ec;
}

.gdds-home-collections__grid,
.gdds-home-products__grid {
  display: grid;
  gap: 20px;
}

.gdds-home-collections__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gdds-home-collection-card,
.gdds-home-product-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(27, 20, 12, 0.08);
  background: #fff;
  box-shadow: var(--gdds-shadow);
}

.gdds-home-collection-card__image,
.gdds-home-product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #faf8f4, #f0ece4);
}

.gdds-home-collection-card__image {
  min-height: 220px;
  padding: 20px;
}

.gdds-home-collection-card__image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.gdds-home-collection-card__body {
  padding: 18px 18px 20px;
}

.gdds-home-collection-card__body h3 {
  margin: 0;
  font-size: 20px;
}

.gdds-home-collection-card__body p {
  margin: 10px 0 0;
  color: var(--gdds-muted);
  font-size: 14px;
}

.gdds-home-partner,
.gdds-home-factory,
.gdds-home-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0b0b0c;
}

.gdds-home-partner::before,
.gdds-home-factory::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(184, 138, 69, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.gdds-home-partner__inner,
.gdds-home-factory__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: start;
  padding: 82px 0;
}

.gdds-home-partner__inner {
  grid-template-columns: 320px minmax(0, 1fr);
}

.gdds-home-partner__intro p:not(.gdds-kicker),
.gdds-home-factory__copy p:not(.gdds-kicker),
.gdds-home-cta__inner p {
  color: rgba(255, 255, 255, 0.72);
}

.gdds-home-partner__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gdds-home-partner__card {
  min-height: 160px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gdds-home-partner__card h3,
.gdds-home-factory__news h3 {
  margin: 0;
  font-size: 21px;
  color: #fff;
}

.gdds-home-partner__card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.gdds-home-products__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gdds-home-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gdds-home-product-card__image {
  min-height: 250px;
  border-bottom: 1px solid rgba(27, 20, 12, 0.06);
}

.gdds-home-product-card__image img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 26px;
}

.gdds-home-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.gdds-home-product-card__body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.gdds-home-product-card__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--gdds-muted);
  font-size: 14px;
}

.gdds-home-product-card__body li + li {
  margin-top: 6px;
}

.gdds-home-product-card__body .gdds-arrow-link {
  margin-top: auto;
}

.gdds-home-factory__inner {
  grid-template-columns: 320px minmax(0, 1fr);
}

.gdds-home-factory__copy {
  padding-top: 8px;
}

.gdds-home-factory__copy .gdds-button {
  margin-top: 22px;
}

.gdds-home-factory__visual {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.gdds-home-factory__visual img {
  width: 100%;
  height: auto;
}

.gdds-home-factory__news {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gdds-home-factory__news-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gdds-home-factory__news-item span {
  display: block;
  color: var(--gdds-gold-strong);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.gdds-home-factory__news-item strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.gdds-home-proof__certs,
.gdds-home-proof__stats {
  display: grid;
  gap: 16px;
}

.gdds-home-proof__certs {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.gdds-home-proof__cert {
  display: grid;
  place-items: center;
  min-height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(27, 20, 12, 0.08);
  background: #fff;
  box-shadow: var(--gdds-shadow);
  font-size: 30px;
  font-weight: 800;
}

.gdds-home-proof__stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.gdds-home-proof__stat {
  padding: 28px 20px;
  border-radius: 22px;
  border: 1px solid rgba(27, 20, 12, 0.08);
  background: #fffdf9;
  text-align: center;
}

.gdds-home-proof__stat strong {
  display: block;
  color: var(--gdds-gold);
  font-size: 34px;
  line-height: 1;
}

.gdds-home-proof__stat span {
  display: block;
  margin-top: 8px;
  color: var(--gdds-muted);
}

.gdds-home-cta__media,
.gdds-home-cta__overlay {
  position: absolute;
  inset: 0;
}

.gdds-home-cta__media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gdds-home-cta__overlay {
  background: linear-gradient(90deg, rgba(10, 10, 11, 0.82) 0%, rgba(10, 10, 11, 0.62) 100%);
}

.gdds-home-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 58px 0;
}

.gdds-home-cta__inner h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

@media (max-width: 1180px) {
  .gdds-product-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gdds-product-detail,
  .gdds-product-detail__layout {
    grid-template-columns: 1fr;
  }

  .gdds-product-detail__media {
    position: static;
  }

  .gdds-product-aside {
    position: static;
  }

  .gdds-home-collections__grid,
  .gdds-home-products__grid,
  .gdds-home-proof__certs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .gdds-home-partner__inner,
  .gdds-home-factory__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .gdds-product-grid--catalog,
  .gdds-product-grid--related,
  .gdds-product-detail__specs,
  .gdds-product-detail__support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gdds-product-detail__top {
    flex-direction: column;
  }

  .gdds-product-description {
    padding: 24px 22px 28px;
  }

  .gdds-home-hero__highlights,
  .gdds-home-partner__grid,
  .gdds-home-products__grid,
  .gdds-home-proof__stats,
  .gdds-home-proof__certs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gdds-home-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .gdds-product-grid--catalog,
  .gdds-product-grid--related,
  .gdds-product-detail__specs,
  .gdds-product-detail__support {
    grid-template-columns: 1fr;
  }

  .gdds-product-card--catalog .gdds-product-card__body h3 {
    font-size: 20px;
  }

  .gdds-home-partner__inner,
  .gdds-home-factory__inner,
  .gdds-home-cta__inner {
    padding: 68px 0;
  }

  .gdds-home-hero--showroom .gdds-home-hero__inner {
    padding: 118px 0 64px;
  }

  .gdds-home-collections,
  .gdds-home-products,
  .gdds-home-proof {
    padding: 68px 0;
  }

  .gdds-home-hero__highlights,
  .gdds-home-collections__grid,
  .gdds-home-partner__grid,
  .gdds-home-products__grid,
  .gdds-home-proof__certs,
  .gdds-home-proof__stats {
    grid-template-columns: 1fr;
  }

  .gdds-home-collection-card__image,
  .gdds-home-product-card__image {
    min-height: 220px;
  }

  .gdds-home-product-card__image img {
    height: 220px;
  }

  .gdds-home-partner__card {
    min-height: auto;
  }
}
