:root {
  --oakley-bg: #000000;
  --oakley-text: #ffffff;
  --oakley-text-muted: rgba(255, 255, 255, 0.78);
  --oakley-text-soft: rgba(255, 255, 255, 0.7);
  --oakley-section-gap: 88px;
}

* {
  box-sizing: border-box;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  background: var(--oakley-bg);
  color: var(--oakley-text);
  font-family: "Satoshi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.oakley-page {
  width: 100%;
  background: var(--oakley-bg);
}

.oakley-shell {
  width: min(1512px, 100%);
  margin: 0 auto;
  padding: 83px 48px 96px;
}

.oakley-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.oakley-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--oakley-text);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  width: fit-content;
  transform: translateY(-4px);
}

.oakley-back__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oakley-back__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.oakley-title {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.oakley-description {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--oakley-text-soft);
}

.oakley-meta {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.oakley-meta__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 40px;
}

.oakley-meta__item--wide {
  min-width: 155px;
}

.oakley-meta__label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.oakley-meta__value {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.oakley-hero {
  margin-top: 56px;
  padding: 32px 0;
}

.oakley-hero__image {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: min(903px, 62vw);
}

.oakley-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.oakley-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 24px;
  align-items: center;
  padding: var(--oakley-section-gap) 0;
}

.oakley-copy {
  padding: 48px 64px;
}

.oakley-copy__title {
  margin: 0 0 19px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.oakley-copy__list,
.oakley-copy__steps {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--oakley-text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.oakley-copy__steps strong {
  font-weight: 700;
}

.oakley-copy__paragraph {
  margin: 0;
  color: var(--oakley-text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.oakley-copy--outcome .oakley-copy__paragraph {
  line-height: 1.3;
}

.oakley-copy--process .oakley-copy__paragraph {
  margin-bottom: 16px;
}

.oakley-card {
  border-radius: 15px;
  overflow: hidden;
}

.oakley-card img,
.oakley-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.oakley-card--square {
  width: 100%;
  max-width: 696px;
  aspect-ratio: 1 / 1;
  justify-self: center;
}

.oakley-card--concept {
  background: #1f1f1f;
}

.oakley-card--concept img {
  object-fit: contain;
}

.oakley-card--portrait {
  width: min(438px, 100%);
  height: min(75vh, 840px);
  justify-self: center;
}

.oakley-card--portrait img {
  object-position: center top;
}

.oakley-card--portrait video {
  object-position: center top;
}

.oakley-block--outcome {
  align-items: center;
}

@media (max-width: 1200px) {
  :root {
    --oakley-section-gap: 72px;
  }

  .oakley-shell {
    padding: 64px 32px 72px;
  }

  .oakley-description {
    max-width: 980px;
    line-height: 1.25;
  }

  .oakley-hero__image {
    height: min(640px, 62vw);
  }

  .oakley-copy {
    padding: 24px;
  }

  .oakley-card--portrait {
    width: min(380px, 100%);
    height: min(75vh, 680px);
  }
}

@media (max-width: 900px) {
  :root {
    --oakley-section-gap: 56px;
  }

  .oakley-shell {
    padding: 56px 24px 56px;
  }

  .oakley-title {
    font-size: clamp(32px, 5vw, 40px);
  }

  .oakley-meta {
    margin-top: 28px;
    gap: 48px;
  }

  .oakley-hero {
    margin-top: 36px;
  }

  .oakley-hero__image {
    height: min(470px, 58vw);
  }

  .oakley-block {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: var(--oakley-section-gap) 0;
  }

  .oakley-block--process .oakley-card {
    order: 2;
  }

  .oakley-block--process .oakley-copy {
    order: 1;
  }

  .oakley-copy {
    padding: 8px 0;
  }

  .oakley-copy__title {
    margin-bottom: 14px;
  }

  .oakley-copy__paragraph {
    line-height: 1.25;
  }

  .oakley-copy--outcome .oakley-copy__paragraph {
    line-height: 1.35;
  }

  .oakley-copy__list,
  .oakley-copy__steps {
    gap: 10px;
    line-height: 1.25;
  }

  .oakley-card--square {
    max-width: none;
  }

  .oakley-card--portrait {
    width: min(438px, 100%);
    height: min(75vh, 700px);
  }
}

@media (max-width: 640px) {
  :root {
    --oakley-section-gap: 44px;
  }

  .oakley-shell {
    padding: 48px 16px 48px;
  }

  .oakley-title {
    font-size: clamp(28px, 8vw, 34px);
  }

  .oakley-description {
    line-height: 1.35;
  }

  .oakley-meta {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .oakley-hero__image {
    height: min(360px, 70vw);
  }

  .oakley-copy__title {
    font-size: 22px;
  }

  .oakley-copy__list,
  .oakley-copy__steps,
  .oakley-copy__paragraph {
    font-size: 15px;
  }

  .oakley-card--portrait {
    height: min(75vh, 620px);
  }
}
