
:root {
  --black: #252525;
  --near: #303030;
  --ink: #171717;
  --graphite: #303030;
  --mid: #787878;
  --line: #b9b9b4;
  --paper: #eeeeeb;
  --white: #ffffff;
  --page-w: 900px;
  --page-h: 1273px;
}

* { box-sizing: border-box; }

html {
  background: #242424;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
  margin: 0;
  padding: 72px 0 56px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 28px 28px,
    #242424;
}

.screen-toolbar {
  position: fixed;
  z-index: 10;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: rgba(37, 37, 37, .9);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
}

.screen-toolbar a,
.screen-toolbar button {
  color: #f6f6f2;
  border: 0;
  background: transparent;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.screen-toolbar button {
  background: #f6f6f2;
  color: #0b0b0b;
}

.catalogue {
  display: grid;
  gap: 28px;
  justify-content: center;
}

.page {
  width: var(--page-w);
  height: var(--page-h);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  break-after: page;
  page-break-after: always;
}

.page.dark {
  background: var(--black);
  color: var(--white);
}

.page.paper {
  background: var(--paper);
  color: var(--ink);
}

.safe {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(120,120,120,.45);
  padding: 28px 36px 34px;
}

.dark .safe {
  border-color: rgba(255,255,255,.16);
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid currentColor;
  color: inherit;
}

.brand-logo {
  width: 118px;
  height: auto;
  display: block;
}

.folio {
  font-size: 9px;
  color: var(--mid);
  font-weight: 700;
}

.dark .folio { color: #8e8e8e; }

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--mid);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: currentColor;
}

h1, h2, h3, h4, p {
  margin: 0;
}

h1 {
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cover-layout {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 44px;
  align-items: center;
  height: 940px;
}

.cover-layout h1 {
  margin-top: 54px;
  font-size: 86px;
  line-height: .9;
}

.cover-layout p {
  margin-top: 32px;
  max-width: 390px;
  color: #d9d9d5;
  font-size: 18px;
  line-height: 1.45;
}

.cover-layout img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  background: #f4f4f2;
}

.cover-note {
  position: absolute;
  bottom: 34px;
  left: 36px;
  color: #9b9b96;
  font-size: 11px;
  font-weight: 700;
}

.contents-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 76px;
}

.contents-layout > div {
  max-width: 590px;
}

.contents h1 {
  margin-top: 28px;
  font-size: 56px;
  line-height: .94;
}

.contents p {
  margin-top: 24px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.toc-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #111;
}

.toc-list a {
  display: grid;
  grid-template-columns: 56px minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 22px;
  align-items: center;
  min-height: 60px;
  border-bottom: 1px solid #bbb;
  color: #111;
  text-decoration: none;
}

.toc-list span {
  font-family: "Arial Black", sans-serif;
  font-size: 13px;
}

.toc-list strong {
  font-family: "Arial Black", sans-serif;
  font-size: 14px;
  line-height: 1.18;
  min-width: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.toc-list em {
  color: #666;
  font-size: 13px;
  font-style: normal;
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: right;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 620px minmax(0, 1fr);
  gap: 24px 34px;
  padding-top: 38px;
}

.copy-block h1 {
  margin-top: 28px;
  font-size: 52px;
  line-height: .92;
}

.copy-block h2 {
  margin-top: 16px;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 900;
}

.rule {
  width: 300px;
  height: 2px;
  background: currentColor;
  margin: 24px 0;
}

.lead {
  font-size: 17px;
  line-height: 1.32;
  font-weight: 800;
}

.body-copy {
  margin-top: 18px;
  max-width: 390px;
  color: #666;
  font-size: 12px;
  line-height: 1.55;
}

.dark .body-copy { color: #bdbdb9; }

.metric-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid currentColor;
  max-width: 420px;
}

.metric {
  min-height: 78px;
  padding: 14px 16px 12px 0;
  border-right: 1px solid rgba(120,120,120,.45);
}

.metric:nth-child(2n) { padding-left: 18px; border-right: 0; }
.metric:nth-child(n+3) { border-top: 1px solid rgba(120,120,120,.45); }

.metric strong {
  display: block;
  font-family: "Arial Black", sans-serif;
  font-size: 22px;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--mid);
  font-size: 8px;
  font-weight: 900;
}

.image-block {
  align-self: stretch;
}

.hero-product {
  width: 100%;
  height: 470px;
  object-fit: cover;
  background: #f7f7f4;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumb-row img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  background: #f7f7f4;
}

.spec-block,
.focus-block {
  border-top: 1px solid currentColor;
  padding-top: 18px;
}

.spec-block h3,
.focus-block h3 {
  color: var(--mid);
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 14px;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 14px;
  min-height: 31px;
  align-items: center;
  border-top: 1px solid rgba(130,130,130,.42);
  font-size: 11px;
}

.spec-row strong {
  font-size: 12px;
  text-align: right;
}

.focus-block ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.focus-block li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
}

.focus-block li span {
  color: var(--mid);
  font-family: "Arial Black", sans-serif;
  font-size: 12px;
}

.focus-block li strong {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.focus-block li p {
  color: #666;
  font-size: 10.5px;
  line-height: 1.5;
}

.dark .focus-block li p { color: #bdbdb9; }

.component-title {
  padding-top: 52px;
  max-width: 720px;
}

.component-title h1 {
  margin-top: 22px;
  font-size: 46px;
  line-height: .96;
  text-transform: none;
}

.component-title p {
  margin-top: 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.component-title span {
  display: block;
  margin-top: 16px;
  color: #777;
  font-size: 11px;
  font-weight: 800;
}

.component-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 34px;
}

.component-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  padding: 10px;
  border: 1px solid #c6c6c0;
  background: #f7f7f3;
}

.component-card img {
  width: 128px;
  height: 110px;
  object-fit: cover;
  background: #e5e5e0;
}

.sku {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 7px;
  color: #f6f6f2;
  background: #111;
  font-size: 10px;
  font-weight: 900;
}

.component-card h4 {
  font-size: 13px;
  line-height: 1.28;
}

.component-card p {
  margin-top: 10px;
  color: #666;
  font-size: 10px;
  font-weight: 700;
}

@media (max-width: 980px) {
  body { padding-top: 64px; }
  .screen-toolbar { width: calc(100vw - 20px); overflow-x: auto; justify-content: flex-start; }
  .page { transform-origin: top center; width: min(var(--page-w), calc(100vw - 18px)); height: auto; min-height: calc((100vw - 18px) * 1.414); }
  .safe { position: relative; inset: auto; min-height: calc((100vw - 78px) * 1.414); }
}

@page {
  size: A4 portrait;
  margin: 0;
}

@media print {
  body {
    padding: 0;
    background: white;
  }
  .screen-toolbar {
    display: none;
  }
  .catalogue {
    display: block;
  }
  .page {
    width: 210mm;
    height: 297mm;
    margin: 0;
    box-shadow: none;
    break-after: page;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .safe {
    inset: 7mm;
    padding: 7mm 9mm 8mm;
  }
}

.contents-layout {
  gap: 30px;
  padding-top: 58px;
}

.contents-layout > div {
  max-width: 650px;
}

.contents h1 {
  font-size: 52px;
}

.contents p {
  max-width: 620px;
  font-size: 13px;
  line-height: 1.45;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 38px 52px;
  padding-top: 56px;
}

.about-copy h1 {
  margin-top: 18px;
  max-width: 620px;
  font-size: 56px;
  line-height: .95;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-top: 18px;
  max-width: 430px;
  font-size: 48px;
  line-height: .98;
  text-transform: uppercase;
}

.about-copy .kicker {
  color: #777;
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  font-size: 17px;
  line-height: 1.05;
}

.about-lead {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px solid #111;
  color: #171717;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 900;
}

.about-copy p:not(.about-lead) {
  margin-top: 18px;
  max-width: 590px;
  color: #555;
  font-size: 13.2px;
  line-height: 1.55;
  font-weight: 650;
}

.about-emphasis {
  padding-top: 18px;
  border-top: 1px solid #111;
  color: #171717 !important;
  font-size: 17px !important;
  line-height: 1.4 !important;
  font-weight: 900 !important;
}

.about-philosophy {
  padding-left: 30px;
  border-left: 1px solid #c6c6c0;
}

.about-philosophy p:first-of-type {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #111;
}

.about-images {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-images figure {
  margin: 0;
  min-width: 0;
  border: 1px solid #c6c6c0;
  background: #f7f7f3;
}

.about-images img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-images figcaption {
  min-height: 38px;
  padding: 10px 12px;
  color: #666;
  font-size: 8.8px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.nested-index {
  display: grid;
  gap: 9px;
}

.index-series {
  border-top: 1px solid #111;
}

.index-series-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid #bdbdb7;
}

.index-series-head span {
  font-family: "Arial Black", sans-serif;
  font-size: 18px;
}

.index-series-head strong {
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.index-products {
  display: grid;
  padding-left: 58px;
}

.index-products a {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  min-height: 23px;
  border-bottom: 1px solid #cfcfca;
  color: #111;
  text-decoration: none;
}

.index-products span {
  color: #777;
  font-size: 7.4px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-products strong {
  min-width: 0;
  font-size: 11.3px;
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.index-products a.index-product-page strong {
  color: #111;
  font-weight: 900;
}

.index-products a.index-list-page strong {
  color: #505050;
  font-weight: 350;
}

.index-products em {
  color: #777;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.compact-title {
  padding-top: 14px;
  max-width: 800px;
}

.compact-title h1 {
  color: var(--mid);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.combo-only .compact-title {
  padding-top: 14px;
}

.combo-only .compact-title h1 {
  color: var(--mid);
  font-size: 18px;
  line-height: 1;
}

.dense-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.compact-card {
  min-height: 248px;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 10px;
  padding: 10px;
}

.compact-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

.card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #f7f7f4;
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.tbd-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(18,18,18,.54);
}

.tbd-photo img {
  filter: grayscale(.35) contrast(.82);
}

.tbd-tag {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 54px;
  padding: 7px 12px 6px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(235,235,230,.12);
  color: rgba(255,255,255,.92);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.dark .tbd-tag {
  border-color: rgba(255,255,255,.76);
  background: rgba(235,235,230,.14);
  color: rgba(255,255,255,.94);
}

.photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: repeating-linear-gradient(
    135deg,
    rgba(120,120,120,.10) 0,
    rgba(120,120,120,.10) 8px,
    rgba(120,120,120,.18) 8px,
    rgba(120,120,120,.18) 16px
  );
  border: 1px solid rgba(130,130,130,.32);
}

.photo-placeholder span {
  color: var(--mid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.dark .photo-placeholder {
  border-color: rgba(255,255,255,.22);
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.06) 0,
    rgba(255,255,255,.06) 8px,
    rgba(255,255,255,.10) 8px,
    rgba(255,255,255,.10) 16px
  );
}

.compact-card h4,
.compact-card .card-name-en {
  font-size: 11.5px;
  line-height: 1.16;
}

.compact-card p {
  margin-top: 5px;
  font-size: 8.6px;
  line-height: 1.22;
}

.card-name-cn {
  color: #4f4f4b;
  font-weight: 800;
}

.card-content {
  color: #73736f;
  font-size: 7.6px;
  font-weight: 750;
  line-height: 1.2;
}

.compact-card .sku {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.compact-card .sku em {
  padding-right: 6px;
  border-right: 1px solid rgba(255,255,255,.42);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.combo-divider {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(130,130,130,.42);
}

.combo-divider span {
  color: var(--mid);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.combo-card {
  border-color: #9d9d98;
  background: #eeeeea;
}

.set-media {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: #2f2f2e;
  color: #f4f4ef;
}

.set-media span {
  position: relative;
  z-index: 2;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 42px;
  line-height: .88;
}

.set-media small {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,.7);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.combo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.set-sku {
  background: #626260;
}

.combo-card h4 {
  font-size: 11.5px;
}

.combo-card p {
  font-size: 8.4px;
}

.mcbk-card {
  border-color: #9a9a94;
  background: #eeeeea;
}

.mcbk-media {
  background: #111;
}

.mcbk-media img {
  filter: contrast(.98) brightness(.92);
}

.mcbk-media span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 5px 7px 4px;
  background: rgba(244,244,239,.86);
  color: #111;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.option-sku {
  background: #4c4c49;
}

.mcbk-card h4 {
  font-size: 11.5px;
}

.mcbk-card p {
  font-size: 8.6px;
}

.dark .component-title p,
.dark .component-card p {
  color: #c9c9c5;
}

.dark .component-card .card-name-cn {
  color: #d7d7d2;
}

.dark .component-card .card-content {
  color: #b4b4ad;
}

.dark .component-card {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}

.dark .component-card h4 {
  color: #f4f4f0;
}

.visual-overview {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  grid-template-rows: 550px 440px;
  gap: 24px 28px;
  padding-top: 34px;
}

.visual-copy {
  min-width: 0;
}

.visual-copy h1 {
  margin-top: 26px;
  font-size: 50px;
  line-height: .92;
}

.visual-copy h2 {
  margin-top: 14px;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 900;
}

.visual-lead {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid currentColor;
  font-size: 17.5px;
  line-height: 1.35;
  font-weight: 900;
}

.visual-lead strong {
  display: block;
}

.visual-lead span {
  display: block;
  margin-top: 5px;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.28;
  font-weight: 900;
}

.visual-body {
  margin-top: 14px;
  color: #666;
  font-size: 11.8px;
  line-height: 1.42;
}

.visual-body-cn {
  margin-top: 8px;
  color: #50504c;
  font-size: 11.2px;
  line-height: 1.48;
  font-weight: 750;
}

.dark .visual-body,
.dark .visual-body-cn {
  color: #c8c8c4;
}

.visual-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid currentColor;
}

.visual-specs div {
  min-height: 66px;
  padding: 12px 14px 11px 0;
  border-bottom: 1px solid rgba(130,130,130,.42);
}

.visual-specs div:nth-child(2n) {
  padding-left: 12px;
  border-left: 1px solid rgba(130,130,130,.42);
}

.visual-specs span {
  display: block;
  color: var(--mid);
  font-size: 8.3px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.visual-specs strong {
  display: block;
  margin-top: 7px;
  font-family: "Arial Black", Impact, "PingFang SC", sans-serif;
  font-size: 15.5px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.visual-main-photo {
  margin: 0;
  min-width: 0;
}

.visual-main-photo img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  background: #f7f7f4;
}

.visual-points {
  border-top: 1px solid currentColor;
  padding-top: 20px;
}

.visual-points h3 {
  color: var(--mid);
  font-size: 10.5px;
  font-weight: 900;
  margin-bottom: 14px;
}

.visual-points ol {
  display: grid;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.visual-points li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.visual-points li span {
  color: var(--mid);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 16px;
  line-height: 1.05;
}

.visual-points li strong {
  display: block;
  font-size: 14px;
  line-height: 1.18;
}

.visual-points li strong b {
  display: block;
}

.visual-points li strong small {
  display: block;
  margin-top: 4px;
  color: var(--mid);
  font-size: 11.2px;
  font-weight: 900;
  line-height: 1.25;
}

.visual-points li p {
  margin-top: 5px;
  color: #666;
  font-size: 10.3px;
  line-height: 1.35;
}

.visual-points li .focus-cn-body {
  margin-top: 3px;
  color: #555;
  font-size: 9.8px;
  line-height: 1.36;
  font-weight: 750;
}

.dark .visual-points li p,
.dark .visual-points li .focus-cn-body {
  color: #c8c8c4;
}

.visual-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 141px;
  gap: 8px;
}

.visual-gallery figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: #f7f7f4;
}

.visual-gallery figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.visual-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.variant-note {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(130,130,130,.42);
  color: var(--mid);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark .variant-note {
  color: #c8c8c4;
}

.cover-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  height: 940px;
  padding-top: 0;
}

.cover-photo {
  display: grid;
  place-items: center;
  margin: 0;
  min-width: 0;
  height: 760px;
  overflow: hidden;
  background: transparent;
  position: relative;
  border: 1px solid rgba(255,255,255,.16);
}

.cover-layout .cover-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.cover-lockup {
  align-self: center;
  min-width: 0;
  max-width: 360px;
  justify-self: start;
}

.cover-lockup h1 {
  display: grid;
  gap: 6px;
  margin: 46px 0 0;
  text-transform: uppercase;
}

.cover-lockup h1 span {
  display: block;
  max-width: 100%;
  font-size: 48px;
  line-height: .94;
  white-space: nowrap;
}

.cover-layout .cover-slogan {
  margin: 34px 0 0;
  max-width: 360px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.45);
  color: #d9d9d5;
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.45;
  text-transform: uppercase;
}

.cover-foot,
.closing-foot {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.76);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cover-foot span:last-child,
.closing-foot span:last-child {
  text-align: right;
}

.closing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  height: 940px;
}

.closing-layout figure {
  display: grid;
  place-items: center;
  margin: 0;
  min-width: 0;
  height: 760px;
  overflow: hidden;
  background: #1f1f1f;
  position: relative;
  border: 1px solid rgba(255,255,255,.16);
}

.closing-layout img {
  display: block;
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: center;
  background: #1f1f1f;
}

.closing-contact {
  align-self: center;
  text-align: left;
}

.closing-contact p {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.45);
  color: #f4f4f0;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.closing-contact p span,
.closing-contact p strong {
  display: block;
}

.closing-contact p span {
  font-weight: 900;
}

.closing-contact p strong {
  margin-top: 8px;
  font-weight: 300;
}
