:root {
  --black: #050505;
  --white: #ffffff;
  --muted: #6d6d6d;
  --line: #e8e8e8;
  --soft: #f6f6f6;
  --blue: #20c7b5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: min(240px, 46vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 15px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding: clamp(64px, 10vw, 124px) clamp(20px, 5vw, 72px) 88px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.98;
  font-weight: 820;
}

.lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: #2a2a2a;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  color: var(--white);
  background: var(--black);
}

.button.secondary {
  background: var(--white);
}

.hero-panel {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--white);
  background: var(--black);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  min-width: 0;
}

.signal-grid span {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.signal-grid span:nth-child(2),
.signal-grid span:nth-child(7),
.signal-grid span:nth-child(12) {
  background: var(--blue);
  border-color: var(--blue);
}

.hero-panel p {
  max-width: 360px;
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 780;
}

.intro,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 84px);
  padding: 96px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.intro h2,
.contact-copy h2 {
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.08;
}

.intro-list {
  display: grid;
  gap: 14px;
}

.intro-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.intro-list span {
  color: var(--blue);
  font-weight: 850;
}

.intro-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.intro-list p,
.profile-copy p,
.contact-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.intro-list p {
  grid-column: 2;
  max-width: 560px;
}

.profile-section {
  padding: 96px clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.profile-heading {
  max-width: 1180px;
  margin: 0 auto 34px;
}

.profile-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
}

.profile-heading p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1240px;
  margin: 0 auto;
}

.talent-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.talent-card:hover {
  border-color: rgba(32, 199, 181, 0.55);
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.08);
  transform: translateY(-3px);
}

.profile-card-link {
  display: flex;
  min-height: 100%;
  flex: 1;
  flex-direction: column;
}

.profile-card-link:focus-visible,
.profile-social-link:focus-visible {
  outline: 3px solid rgba(32, 199, 181, 0.45);
  outline-offset: 4px;
}

.profile-image-wrap {
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f0f0f0;
}

.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-copy {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3.2vw, 36px);
}

.photo-image img {
  border-radius: 0;
}

.profile-copy h3 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1;
}

.profile-role {
  margin-bottom: 0;
  color: var(--black);
  font-weight: 800;
}

.profile-copy p:not(.profile-role) {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 17px;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
}

.profile-meta span {
  padding: 8px 11px;
  color: var(--blue);
  background: #eaf8f6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--blue);
  font-weight: 850;
}

.profile-social-link {
  margin: 0 clamp(22px, 3.2vw, 36px) clamp(22px, 3.2vw, 36px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.profile-social-link:hover {
  color: var(--black);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #cfcfcf;
  border-radius: 0;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  margin-top: 8px;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  font-weight: 750;
}

footer img {
  width: 42px;
  height: 42px;
  filter: invert(1);
}

footer span:last-child {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
}

.person-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(44px, 8vw, 92px) clamp(20px, 5vw, 72px) clamp(56px, 8vw, 96px);
  min-width: 0;
}

.person-photo {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--soft);
  border: 1px solid var(--line);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-copy h1 {
  margin-bottom: 14px;
  word-break: keep-all;
}

.person-name {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 850;
}

.person-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.person-facts span {
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.person-tags {
  margin-bottom: 28px;
}

.gallery-section {
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 104px);
}

.gallery-heading {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin-bottom: 24px;
}

.gallery-heading h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1;
}

.gallery-heading .section-label {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(10px, 1.5vw, 18px);
}

.gallery-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--soft);
  border: 1px solid var(--line);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.person-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 104px);
}

.person-section h2 {
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1.08;
}

@media (max-width: 1040px) {
  .person-hero,
  .person-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .person-photo {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .person-copy,
  .gallery-heading,
  .gallery-grid,
  .person-section > * {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .intro,
  .profile-grid,
  .talent-card,
  .contact-section,
  .person-hero,
  .person-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-panel {
    min-height: 380px;
  }

  .talent-card {
    padding: 18px;
  }

  .person-photo {
    max-height: 68vh;
  }

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

  footer span:last-child {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .intro,
  .profile-section,
  .contact-section,
  .person-hero,
  .person-section,
  .gallery-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  nav {
    gap: 10px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button,
  .contact-form button {
    max-width: 100%;
    padding-inline: 16px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
    word-break: keep-all;
  }

  .intro h2,
  .contact-copy h2,
  .profile-heading h2 {
    font-size: 32px;
    line-height: 1.12;
    word-break: keep-all;
  }

  .hero-panel p {
    font-size: 23px;
  }

  .hero-panel {
    padding: 20px;
  }

  .intro-list article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .profile-copy h3 {
    font-size: 38px;
  }

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

  .gallery-item {
    aspect-ratio: 4 / 5;
  }
}
