:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #525252;
  --paper: #ffffff;
  --band: #eeeeee;
  --surface: #ffffff;
  --line: #dedede;
  --accent: #40589b;
  --accent-dark: #1c2c66;
  --teal: #40589b;
  --gold: #40589b;
  --shadow: 0 20px 60px rgba(22, 20, 18, 0.18);
  --nav-height: 78px;
  --nav-hide-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

.site-header {
  padding-top: var(--nav-height);
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
  min-height: var(--nav-height);
  padding: 0 clamp(24px, 8vw, 160px);
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  transition: transform 0.22s ease;
}

.brand {
  flex: 1 1 260px;
  min-width: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 300;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 46px);
  flex: 2 1 auto;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu a {
  color: #171717;
  text-decoration: none;
  text-underline-offset: 6px;
}

.menu a:hover,
.menu a:focus-visible {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #d7d7d7;
}

.hero > img {
  width: 100%;
  height: clamp(320px, 28.56vw, 793px);
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  z-index: 1;
  top: clamp(28px, 3vw, 54px);
  left: clamp(28px, 8vw, 160px);
  width: min(440px, calc(100% - 56px));
  color: #fff;
}

.eyebrow,
.section__label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.9rem, 3vw, 3.65rem);
  white-space: nowrap;
}

.hero__overlay p {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(0.82rem, 1.1vw, 1.08rem);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__overlay p:last-child {
  max-width: 390px;
  margin-top: 12px;
  font-size: clamp(0.78rem, 0.95vw, 0.96rem);
  line-height: 1.35;
  text-transform: none;
}

.section {
  scroll-margin-top: calc(var(--nav-height) + 18px);
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(56px, 6vw, 96px) 0;
}

.intro {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1240px) / 2));
  padding-right: max(24px, calc((100% - 1240px) / 2));
  background: var(--band);
}

.intro__content {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(42px, 5vw, 88px);
  align-items: start;
  min-width: 0;
}

.section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 3.65vw, 3.95rem);
}

.fit-title {
  white-space: nowrap;
}

.intro__text {
  min-width: 0;
  color: #28231f;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.35;
}

.intro__text p {
  margin: 0 0 1.35rem;
}

.talent-stats {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.talent-stats div {
  display: flex;
  gap: 0.35em;
}

.talent-stats dt,
.talent-stats dd {
  margin: 0;
}

.intro__portrait {
  margin: 0;
  width: min(560px, 100%);
  justify-self: end;
}

.intro__portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery {
  border-top: 1px solid var(--line);
}

.gallery__header {
  width: min(980px, 100%);
  margin-inline: auto;
  margin-bottom: 18px;
  text-align: left;
}

.gallery-viewer {
  width: min(980px, 100%);
  margin: 0 auto;
}

.gallery-main {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 14 / 9;
  overflow: hidden;
  background: #000;
}

.gallery-main__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
}

.gallery-main__open:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.gallery-main__open img {
  pointer-events: none;
}

.gallery-main__backdrop {
  position: absolute;
  inset: -28px;
  width: calc(100% + 56px);
  height: calc(100% + 56px);
  object-fit: cover;
  filter: blur(28px) brightness(0.66) saturate(1.03);
  transform: scale(1.04);
}

.gallery-main__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  cursor: default;
}

.gallery-actions__toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  cursor: pointer;
  font: 700 1rem/1 var(--body-font);
  letter-spacing: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.gallery-actions__toggle svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-actions__toggle svg path {
  fill: none;
}

.gallery-actions__toggle:hover,
.gallery-actions__toggle:focus-visible {
  background: #fff;
}

.gallery-actions__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 172px;
  padding: 7px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.gallery-actions__menu[hidden] {
  display: none;
}

.gallery-actions__menu button,
.gallery-actions__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 650 0.84rem/1.2 var(--body-font);
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
}

.gallery-actions__menu span {
  display: grid;
  width: 20px;
  place-items: center;
}

.gallery-actions__menu svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-actions__menu button:hover,
.gallery-actions__menu button:focus-visible,
.gallery-actions__menu a:hover,
.gallery-actions__menu a:focus-visible {
  background: var(--paper);
}

.gallery-selector {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 6px;
  align-items: stretch;
  margin-top: 8px;
}

.gallery-scroll {
  display: grid;
  min-width: 0;
  min-height: 100%;
  place-items: center;
  border: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  opacity: 0.86;
}

.gallery-scroll:hover,
.gallery-scroll:focus-visible {
  opacity: 1;
}

.gallery-scroll:disabled {
  cursor: default;
  opacity: 0.22;
}

.gallery-scroll:disabled:hover,
.gallery-scroll:disabled:focus-visible {
  opacity: 0.22;
}

.gallery-scroll span {
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
}

.gallery-strip {
  display: flex;
  gap: 5px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.gallery-thumb {
  flex: 0 0 clamp(82px, 9vw, 126px);
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.78;
  scroll-snap-align: start;
}

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

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  opacity: 1;
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.fun-facts {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1240px) / 2));
  padding-right: max(24px, calc((100% - 1240px) / 2));
  background: var(--band);
}

.fun-facts[hidden],
.fun-facts.is-hidden {
  display: none;
}

.fun-facts__inner {
  max-width: 980px;
}

.fun-facts__list {
  max-width: 900px;
  margin: 22px 0 0;
  padding-left: 1.35rem;
  color: #28231f;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.42;
}

.fun-facts__list li + li {
  margin-top: 0.72rem;
}

.reel {
  border-top: 1px solid var(--line);
}

.reel__header {
  width: min(980px, 100%);
  margin: 0 auto 18px;
}

.talent-video-player {
  width: min(980px, 100%);
  margin: 0 auto;
}

.talent-video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.talent-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.talent-video-big-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0, 0, 0, 0.16);
  color: #111;
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.talent-video-big-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.talent-video-big-play span,
.talent-video-control span {
  display: block;
}

.talent-video-big-play span {
  display: grid;
  place-items: center;
  width: clamp(58px, 7vw, 76px);
  height: clamp(58px, 7vw, 76px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.talent-video-big-play svg {
  display: block;
  width: clamp(28px, 4vw, 34px);
  height: clamp(28px, 4vw, 34px);
  fill: #111923;
  stroke: #111923;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: translateX(2px);
}

.talent-video-controls {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto minmax(80px, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.talent-video-stage.controls-hidden .talent-video-controls {
  opacity: 0;
  pointer-events: none;
}

.talent-video-stage.controls-hidden .talent-video-big-play {
  opacity: 0;
  pointer-events: none;
}

.talent-video-stage:not(.controls-hidden):focus-within .talent-video-controls {
  opacity: 1;
  pointer-events: auto;
}

.talent-video-control,
.talent-video-time {
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.talent-video-control {
  min-width: 32px;
  padding: 0 10px;
  cursor: pointer;
}

.talent-video-control svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: #111923;
  stroke: #111923;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.talent-video-control .talent-video-icon-line,
.talent-video-big-play .talent-video-icon-line {
  fill: none;
}

.talent-video-time {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.talent-video-seek {
  --seek-pct: 0%;
  width: 100%;
  height: 4px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 0%, #fff var(--seek-pct), rgba(255, 255, 255, 0.32) var(--seek-pct), rgba(255, 255, 255, 0.32) 100%);
  cursor: pointer;
}

.talent-video-seek::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
}

.talent-video-seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: #fff;
}

.talent-video-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  width: 100%;
  margin-top: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.talent-video-thumb {
  flex: 0 0 clamp(82px, 9vw, 126px);
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.78;
  scroll-snap-align: start;
}

.talent-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talent-video-thumb:hover,
.talent-video-thumb:focus-visible,
.talent-video-thumb.is-active {
  opacity: 1;
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.contact {
  border-top: 1px solid var(--line);
}

.contact__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--teal);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--accent-dark);
}

.site-footer {
  padding: 30px 20px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.single2FloatingTopDock {
  position: fixed;
  right: 12px;
  bottom: 8px;
  z-index: 28;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0.2s;
}

.single2FloatingTopDock.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.single2BackToTop {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.38);
}

.single2BackToTop:hover,
.single2BackToTop:focus-visible {
  background: rgba(12, 24, 40, 0.9);
  border-color: rgba(255, 255, 255, 0.42);
}

.single2BackToTopText {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  line-height: 1.2;
  text-align: right;
}

.site-header--contact {
  min-height: var(--nav-height);
  padding-top: var(--nav-height);
}

.contact-page-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.contact-page-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 200;
  line-height: 1.02;
  text-transform: uppercase;
}

.contact-page-copy p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: #f5f5f5;
}

.contact-form--modal {
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-form label {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form--modal input,
.contact-form--modal textarea {
  padding: 9px 11px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form--modal textarea {
  height: clamp(110px, 18dvh, 150px);
  min-height: 96px;
}

.contact-captcha {
  display: grid;
  gap: 7px;
}

.contact-captcha-fallback {
  display: grid;
  grid-template-columns: auto auto minmax(180px, 280px);
  gap: 14px;
  align-items: center;
  justify-content: start;
}

.contact-turnstile:empty {
  display: none;
}

.contact-captcha p {
  margin: 0;
  color: var(--muted);
}

.contact-captcha-fallback input {
  min-width: 0;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-status[data-tone="success"] {
  color: #23623a;
}

.contact-status[data-tone="error"] {
  color: #8f3f2f;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.contact-modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2.8vw, 30px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.contact-modal.is-hidden {
  display: none;
}

.contact-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(96dvh, 940px);
  overflow-y: auto;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  background: #f5f5f5;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-dialog h2 {
  margin: 0 0 8px;
  max-width: calc(100% - 54px);
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  font-weight: 200;
  line-height: 1.02;
  white-space: nowrap;
  text-transform: uppercase;
}

.contact-dialog > .section__label {
  margin-bottom: 8px;
}

.contact-modal__intro {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #d5d5d5;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-send-overlay {
  position: absolute;
  z-index: 3;
  inset: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  place-items: center;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.contact-form.is-sending .contact-send-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-send-overlay__card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  padding: 18px 22px;
  border-radius: 8px;
  background: rgba(85, 185, 72, 0.96);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.contact-send-progress {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: #23623a;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.contact-form.is-sending .contact-send-progress,
.contact-send-progress.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-send-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(74, 222, 128, 0.22);
  border-top-color: #4ade80;
  border-radius: 999px;
  animation: contact-spin 0.75s linear infinite;
}

.contact-send-overlay .contact-send-spinner {
  width: 22px;
  height: 22px;
  border-width: 3px;
  border-color: rgba(255, 255, 255, 0.28);
  border-top-color: #fff;
  flex: 0 0 auto;
}

.contact-send-dots {
  display: inline-flex;
  gap: 2px;
  margin-left: 2px;
}

.contact-send-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #4ade80;
  animation: contact-dot 1s ease-in-out infinite;
}

.contact-send-overlay .contact-send-dots span {
  background: #fff;
}

.contact-send-dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.contact-send-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes contact-dot {
  0%,
  80%,
  100% {
    opacity: 0.22;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.contact-secondary {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.download-modal {
  position: fixed;
  z-index: 34;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.46);
}

.download-modal.is-hidden {
  display: none;
}

.download-dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.download-dialog h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 200;
  line-height: 1;
}

.download-dialog p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.download-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.download-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.download-dialog__secondary {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 600 0.95rem/1 var(--body-font);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lightbox {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 14, 13, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  object-fit: contain;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 1180px) {
  :root {
    --nav-height: 64px;
  }

  body.nav-menu-open {
    overflow: hidden;
  }

  .top-nav {
    align-items: center;
    gap: 18px;
    padding: 10px 74px 10px 22px;
    transform: translateY(calc(-1 * var(--nav-hide-offset)));
  }

  body.nav-menu-open .top-nav {
    transform: none;
  }

  .brand {
    flex: 1 1 auto;
  }

  .menu-toggle {
    position: fixed;
    z-index: 32;
    top: calc(var(--nav-height) / 2);
    right: 18px;
    display: block;
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(calc(-50% + var(--nav-hide-offset)));
    transition:
      transform 0.22s ease,
      background 0.2s ease,
      border-color 0.2s ease;
  }

  body.nav-menu-open .menu-toggle {
    transform: translateY(-50%);
  }

  .menu {
    position: fixed;
    top: var(--nav-height);
    left: auto;
    right: 12px;
    width: min(320px, calc(100vw - 24px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border-radius: 0;
    border-top: 1px solid #ededed;
    background: #fff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 14px 12px;
  }

  .hero > img {
    height: clamp(270px, 44vw, 500px);
    object-position: center center;
  }

  .intro__content,
  .contact-page-section,
  .contact__content {
    grid-template-columns: 1fr;
  }

  .section h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 7vw, 3.8rem);
  }

  .fit-title {
    display: block;
    overflow: hidden;
    text-overflow: clip;
  }

  .intro__text {
    max-width: 760px;
    font-size: clamp(1.04rem, 2.5vw, 1.28rem);
  }

  .intro__portrait {
    width: min(720px, 100%);
    justify-self: start;
  }

  .contact__content {
    align-items: flex-start;
    flex-direction: column;
  }

  .single2FloatingTopDock {
    right: 8px;
  }

  .single2BackToTopText {
    font-size: 11px;
  }

  .gallery-viewer,
  .talent-video-player {
    width: min(100vw, 177.778dvh);
    max-width: 100vw;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }

  .gallery-viewer {
    width: min(100vw, 155.556dvh);
  }

  .gallery-main,
  .gallery-selector {
    width: 100%;
    min-width: 0;
  }

  .talent-video-stage,
  .talent-video-strip {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .section {
    width: min(100% - 40px, 1240px);
    padding-block: clamp(46px, 12vw, 70px);
  }

  .intro {
    padding-left: max(20px, calc((100% - 1240px) / 2));
    padding-right: max(20px, calc((100% - 1240px) / 2));
  }

  .intro__content {
    gap: 34px;
  }

  .section h2 {
    font-size: clamp(2.15rem, 8.5vw, 3.2rem);
  }

  .intro__text {
    font-size: clamp(1rem, 4vw, 1.16rem);
    line-height: 1.45;
  }

  .talent-stats {
    margin-top: 1.5rem;
    font-size: 1.08rem;
  }

  .hero__overlay {
    top: 22px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8.8vw, 3.6rem);
  }

  .hero__overlay p:last-child {
    max-width: 92%;
    font-size: clamp(0.9rem, 3.2vw, 1.08rem);
  }

  .gallery-strip,
  .talent-video-strip {
    padding-bottom: 2px;
  }

  .gallery-main {
    aspect-ratio: 4 / 3;
  }

  .gallery-selector {
    width: 100%;
  }

  .contact__content h2 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }

  .contact-modal {
    align-items: start;
    padding: 10px;
  }

  .contact-dialog {
    max-height: calc(100dvh - 20px);
    padding: 22px 18px 18px;
  }

  .contact-dialog h2 {
    margin-bottom: 8px;
    font-size: clamp(1.35rem, 6.2vw, 1.95rem);
    line-height: 1;
  }

  .contact-modal__intro {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .contact-form {
    gap: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 9px 10px;
  }

  .contact-form textarea {
    height: 92px;
    min-height: 86px;
  }

  .contact-captcha-fallback {
    grid-template-columns: auto auto minmax(140px, 220px);
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .section {
    width: min(100% - 32px, 1240px);
  }

  .hero > img {
    height: clamp(210px, 58vw, 310px);
    object-position: center center;
  }

  .hero__overlay {
    top: 18px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7.4vw, 2.3rem);
  }

  .section h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.55rem);
  }

  .intro__text {
    font-size: 1rem;
  }

  .talent-stats {
    font-size: 1rem;
  }

  .contact-dialog h2 {
    font-size: clamp(1.18rem, 5.8vw, 1.55rem);
  }

  .contact-modal__intro {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .contact-captcha-fallback {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery-viewer,
  .talent-video-player {
    width: min(100vw, 177.778dvh);
    max-width: 100vw;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }

  .gallery-viewer {
    width: min(100vw, 133.333dvh);
  }

  .gallery-selector {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 5px;
  }

  .gallery-scroll span {
    font-size: 26px;
  }

  .gallery-thumb,
  .talent-video-thumb {
    flex-basis: clamp(72px, 26vw, 112px);
  }

  .talent-video-controls {
    grid-template-columns: auto auto minmax(64px, 1fr);
  }

  .talent-video-control[data-video-mute],
  .talent-video-control[data-video-fullscreen] {
    display: none;
  }
}
