:root {
  --af-font-display: "Cormorant Garamond", Georgia, serif;
  --af-font-body: "Baskervville", Georgia, serif;
  --af-color-white: #ffffff;
  --af-color-ink: #111111;
  --af-color-muted: #555555;
  --af-color-soft: #999999;
  --af-color-line: #e5e5e5;
  --af-container: 1512px;
  --af-gutter: clamp(24px, 5vw, 96px);
  --af-section-y: clamp(132px, 8vw, 176px);
  --af-section-y-mobile: 72px;
  --af-gap: 24px;
  --af-section-title-standard: clamp(42px, 3.25vw, 64px);
  --af-copy-editorial: clamp(19px, 1.18vw, 24px);
  --af-copy-editorial-line: 1.46;
  --af-ease: cubic-bezier(.22, 1, .36, 1);
}

:where(.wp-site-blocks) {
  padding: 0;
  margin: 0;
}

.af-page,
.af-page * {
  box-sizing: border-box;
}

.af-page {
  margin: 0;
  background: var(--af-color-white);
  color: var(--af-color-ink);
  font-family: var(--af-font-body);
  font-size: 18px;
  line-height: 1.58;
  overflow: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.af-page img,
.af-page video {
  display: block;
  max-width: 100%;
  height: auto;
}

.af-page a {
  color: inherit;
  text-decoration: none;
}

.af-page :focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 6px;
}

.af-container {
  width: min(var(--af-container), calc(100% - (var(--af-gutter) * 2)));
  margin-inline: auto;
}

.af-section {
  padding-block-start: var(--af-section-y);
}

.af-section-kicker {
  margin: 0 0 18px;
  color: var(--af-color-soft);
  font-family: var(--af-font-body);
  font-size: 12px;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.af-section-title {
  margin: 0;
  color: var(--af-color-ink);
  font-family: var(--af-font-display);
  font-size: clamp(54px, 5.5vw, 108px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .9;
}

.af-editorial-copy {
  margin: 0;
  color: var(--af-color-muted);
  font-family: var(--af-font-body);
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.62;
}

.af-button,
.af-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--af-font-body);
  font-size: 12px;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity .35s var(--af-ease), color .35s var(--af-ease), border-color .35s var(--af-ease), transform .35s var(--af-ease);
}

.af-button {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
}

.af-button:hover,
.af-button:focus-visible,
.af-link:hover,
.af-link:focus-visible {
  opacity: .72;
  transform: translateY(-1px);
}

.af-button--light {
  color: var(--af-color-white);
}

.af-button--dark {
  color: var(--af-color-ink);
}

.af-link {
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
}

.af-media {
  position: relative;
  overflow: hidden;
  background: var(--af-color-ink);
}

.af-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--af-ease), opacity .6s var(--af-ease);
}

.af-media:hover img,
.af-media:focus-within img {
  transform: scale(1.025);
}

.af-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(17,17,17,.18);
  transition: background .35s var(--af-ease), transform .35s var(--af-ease);
}

.af-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--af-color-white);
}

.af-media:hover .af-play,
.af-media:focus-within .af-play {
  background: rgba(17,17,17,.34);
  transform: translate(-50%, -50%) scale(1.04);
}

.af-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 92px);
  flex-wrap: wrap;
}

.af-logo-strip img {
  width: auto;
  max-width: 170px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1);
}

.af-site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--af-color-white);
}

.af-site-footer {
  background: var(--af-color-ink);
  color: var(--af-color-white);
}

.af-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.af-socials a {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  transition: border-color .35s var(--af-ease), opacity .35s var(--af-ease), transform .35s var(--af-ease);
}

.af-socials a:hover,
.af-socials a:focus-visible {
  border-color: rgba(255,255,255,.85);
  opacity: .82;
  transform: translateY(-1px);
}

.af-lining-nums {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

@media (prefers-reduced-motion: reduce) {
  .af-page *,
  .af-page *::before,
  .af-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 760px) {
  .af-page {
    font-size: 17px;
  }

  .af-container {
    width: calc(100% - 36px);
  }

  .af-section {
    padding-block-start: var(--af-section-y-mobile);
  }

  .af-section-title {
    font-size: clamp(44px, 15vw, 64px);
  }

  .af-play {
    width: 60px;
    height: 60px;
  }
}
