:root {
  --ink: #11110f;
  --paper: #f7f7f7;
  --paper-deep: #eeeeee;
  --white: #fff;
  --gold: #bc9a6a;
  --gold-light: #ddc49f;
  --line: rgba(17, 17, 15, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --plyr-color-main: #bc9a6a;
  --plyr-video-control-color-hover: #fff;
  --plyr-video-control-background-hover: rgba(188, 154, 106, 0.9);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1400px, calc(100% - 96px));
  margin: 0 auto;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.brand img {
  width: 171px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  gap: 34px;
  color: var(--white);
}

.site-nav a {
  position: relative;
  padding: 5px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #17130f;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  animation: hero-reveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.page-kasia .hero-media img {
  object-position: 50% 48%;
}

.page-laura .hero-media img {
  object-position: 50% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 11, 9, 0.67) 0%, rgba(12, 11, 9, 0.25) 47%, rgba(12, 11, 9, 0.3) 100%),
    linear-gradient(0deg, rgba(12, 11, 9, 0.62) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 96px));
  margin: 80px auto 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 25px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.29em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.65;
}

.eyebrow.dark {
  color: #716352;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 10.8vw, 166px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-shadow: 0 6px 35px rgba(0, 0, 0, 0.17);
}

.hero h1 span {
  color: var(--gold-light);
  font-size: 0.62em;
  font-style: italic;
}

.hero-lead {
  margin: 42px 0 35px;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.45;
}

.watch-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.play-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.play-icon::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.watch-link:hover .play-icon {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.scroll-note {
  position: absolute;
  right: 48px;
  bottom: 70px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-note span {
  width: 44px;
  height: 1px;
  background: currentColor;
}

.film-section {
  padding: clamp(90px, 12vw, 180px) 0;
  background: var(--paper);
}

.section-inner {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -25px;
}

.section-intro h2,
.story-copy h2,
.cta-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-intro > p:last-child {
  max-width: 535px;
  margin: 0;
  color: #4d4841;
  font-size: 14px;
}

.video-frame {
  position: relative;
}

.video-frame::before {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 33%;
  height: 55%;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  content: "";
}

.video-frame-inner {
  position: relative;
  z-index: 1;
  padding: clamp(8px, 1.25vw, 18px);
  background: #171614;
  box-shadow: 0 30px 80px rgba(46, 37, 27, 0.19);
}

.video-frame .plyr {
  --plyr-control-radius: 0;
  --plyr-video-background: #0d0d0c;
}

.plyr__video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d0d0c;
}

.plyr__video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin: 16px 0 0;
  color: #827668;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-caption span {
  color: var(--ink);
}

.story-section {
  padding: clamp(90px, 11vw, 165px) 0 0;
  color: #f7f4ee;
  background: var(--ink);
}

.story-inner {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
  padding-bottom: clamp(85px, 10vw, 150px);
}

.story-number {
  padding-top: 3px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
}

.story-copy .eyebrow {
  color: var(--gold-light);
}

.story-copy h2 {
  max-width: 780px;
}

.story-copy h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.story-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 65px 0 0;
  color: #bdb6ac;
  font-size: 13px;
}

.story-text p {
  margin: 0;
}

.standards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.standards div {
  display: flex;
  flex-direction: column;
  min-height: 172px;
  padding: 30px clamp(25px, 4vw, 68px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.standards div:last-child {
  border-right: 0;
}

.standards span {
  color: #756d64;
  font-family: var(--serif);
  font-size: 14px;
}

.standards strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 400;
}

.cta-section {
  position: relative;
  display: grid;
  min-height: 690px;
  padding: 100px 48px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(20, 17, 13, 0.72), rgba(20, 17, 13, 0.76)),
    url("natalia-damian-palac.jpg") center 51% / cover no-repeat;
}

.page-laura .cta-section {
  background:
    linear-gradient(rgba(12, 14, 11, 0.58), rgba(12, 14, 11, 0.68)),
    url("laura-lukasz-dron.jpg") center center / cover no-repeat;
}

.page-kasia .cta-section {
  background:
    linear-gradient(rgba(18, 16, 13, 0.62), rgba(18, 16, 13, 0.7)),
    url("kasia-michal-stopka.jpg") center center / cover no-repeat;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.cta-content .eyebrow {
  justify-content: center;
  color: var(--gold-light);
}

.cta-content h2 {
  font-size: clamp(48px, 6vw, 86px);
}

.cta-content > p:not(.eyebrow) {
  max-width: 590px;
  margin: 34px auto 42px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-width: 280px;
  padding: 18px 22px;
  justify-content: space-between;
  color: var(--ink);
  background: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-button span {
  font-size: 18px;
  font-weight: 300;
}

.cta-button:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px 55px;
  align-items: end;
  padding: 62px max(48px, calc((100% - 1400px) / 2));
  color: #aaa39a;
  background: #0a0a09;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--white);
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 25px;
  color: var(--white);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .site-header,
  .hero-content,
  .section-inner,
  .story-inner {
    width: calc(100% - 48px);
  }

  .site-header {
    padding: 23px 0;
  }

  .brand img {
    width: 145px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 9px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro .eyebrow {
    margin-bottom: 0;
  }

  .story-inner {
    grid-template-columns: 1fr;
  }

  .story-number {
    display: none;
  }

  .story-text {
    gap: 35px;
  }

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

  .standards div:nth-child(2) {
    border-right: 0;
  }

  .standards div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-footer > p:not(.copyright) {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-header,
  .hero-content,
  .section-inner,
  .story-inner {
    width: calc(100% - 36px);
  }

  .site-nav a:first-child {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 57% center;
  }

  .page-kasia .hero-media img {
    object-position: 50% center;
  }

  .page-laura .hero-media img {
    object-position: 50% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 11, 9, 0.58), rgba(12, 11, 9, 0.16)),
      linear-gradient(0deg, rgba(12, 11, 9, 0.82), rgba(12, 11, 9, 0.08) 70%);
  }

  .hero-content {
    align-self: end;
    margin-bottom: 105px;
  }

  .hero h1 {
    font-size: clamp(62px, 20vw, 92px);
    line-height: 0.9;
  }

  .hero h1 span {
    display: block;
    margin: 5px 0;
  }

  .hero-lead {
    margin: 30px 0;
    font-size: 19px;
  }

  .scroll-note {
    display: none;
  }

  .film-section {
    padding: 86px 0 95px;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .section-intro h2,
  .story-copy h2 {
    font-size: 43px;
  }

  .video-frame::before {
    top: -9px;
    left: -9px;
  }

  .video-frame-inner {
    margin-right: -18px;
    margin-left: -18px;
    padding: 6px;
  }

  .video-caption {
    justify-content: flex-start;
  }

  .story-section {
    padding-top: 88px;
  }

  .story-text {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

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

  .standards div {
    min-height: 120px;
    padding: 23px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .standards div:last-child {
    border-bottom: 0;
  }

  .cta-section {
    min-height: 640px;
    padding: 80px 24px;
    background-position: 50% center;
  }

  .cta-content h2 {
    font-size: 49px;
  }

  .cta-button {
    min-width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
