@font-face {
  font-family: "Inter Display";
  src: url("fonts/InterDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --unit: min(1px, calc(100vw / 1728), calc(100vh / 1162));
  --container-pad-top: calc(94 * var(--unit));
  --container-pad-bottom: calc(60 * var(--unit));
  --container-gap: calc(80 * var(--unit));
  --body-gap: calc(20 * var(--unit));
  --side-margin: calc(80 * var(--unit));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #fff;
  color: #0A0A0A;
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.page {
  width: calc(1728 * var(--unit));
  height: calc(1162 * var(--unit));
  flex-shrink: 0;
}

.container {
  width: calc(1568 * var(--unit));
  height: 100%;
  margin: 0 auto;
  padding: var(--container-pad-top) 0 var(--container-pad-bottom) 0;
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

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

.headline {
  grid-column: 2 / span 3;
  max-width: calc(928 * var(--unit));
  font-family: "Inter Display", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: max(28px, calc(64 * var(--unit)));
  line-height: calc(70 * var(--unit));
  letter-spacing: calc(-1.024 * var(--unit));
  text-align: justify;
}

.body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--body-gap);
}

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

.label {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: max(14px, calc(16 * var(--unit)));
  line-height: normal;
  letter-spacing: calc(-0.5 * var(--unit));
  white-space: nowrap;
  color: #141414;
}

a.label {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.col-1 { grid-column: 1; }
.col-2 { grid-column: 2; }
.col-3 { grid-column: 3; }
.col-4 { grid-column: 4; }

.hero-block {
  flex: 1;
  min-height: 0;
  position: relative;
  background: #826641;
  overflow: hidden;
}

.hero-block video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  background: #826641 url("video/her-poster.jpg") center / cover no-repeat;
}

@media (max-width: 759.98px) {
  :root {
    --unit: min(1px, calc(100vw / 402), calc(100vh / 874));
    --container-pad-top: calc(140 * var(--unit));
    --container-pad-bottom: 0px;
    --container-gap: calc(60 * var(--unit));
    --body-gap: calc(16 * var(--unit));
    --side-margin: 12px;
  }

  .page {
    width: 100vw;
    height: calc(874 * var(--unit));
  }

  .container {
    width: 100%;
  }

  .header,
  .labels {
    padding: 0 var(--side-margin);
    grid-template-columns: repeat(2, 1fr);
  }

  .headline {
    grid-column: 1 / -1;
    max-width: none;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    font-size: max(28px, calc(28 * var(--unit)));
    line-height: calc(34 * var(--unit));
    letter-spacing: calc(-0.84 * var(--unit));
    text-align: left;
  }

  .label {
    font-size: max(14px, calc(14 * var(--unit)));
    letter-spacing: calc(-0.42 * var(--unit));
  }

  .col-1, .col-2, .col-3, .col-4 { grid-column: auto; }

  .mobile-hide { display: none; }

  .body { flex: none; }

  .hero-block {
    flex: none;
    height: calc(320 * var(--unit));
  }
}
