:root {
  --ink: #172328;
  --cream: #f7f3eb;
  --paper: #fffdfa;
  --aqua: #9ed9d8;
  --aqua-deep: #5aa9aa;
  --teal: #0c8f9d;
  --coral: #e77658;
  --muted: #66777a;
  --line: rgba(23, 35, 40, .16);
  --max: 1180px;
}


/* =========================================================
   RESET / GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--cream);
  color: var(--ink);

  font-family: "Inter", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;

  line-height: 1.6;
}

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

a {
  color: inherit;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill,
.icon.icon-fill {
  fill: currentColor;
  stroke: none;
}

.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;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;
  z-index: 30;

  top: 0;
  left: 0;
  right: 0;

  display: grid;
  grid-template-columns: 270px 1fr 100px;
  align-items: center;

  width: 100%;
  height: 94px;

  padding: 0 4.8vw;

  background: transparent;
  border: 0;

  color: #fff;
}

.brand {
  color: #fff;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;

  line-height: 1;
  letter-spacing: -.01em;

  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  display: inline;
  font-weight: inherit;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 2.7vw;
}

.main-nav a {
  color: #fff;

  font-size: .95rem;
  font-weight: 600;

  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;

  white-space: nowrap;

  transition: opacity .15s ease;
}

.main-nav a:hover {
  opacity: .72;
}

.header-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  gap: 18px;
}

.header-social a {
  color: #fff;

  font-size: 1.45rem;
  font-weight: 700;

  line-height: 1;

  text-decoration: none;

  transition: opacity .15s ease;
}

.header-social a:hover {
  opacity: .72;
}

.header-social .icon {
  display: block;
  width: 25px;
  height: 25px;
}

.nav-toggle {
  display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  width: 100%;

  min-height: 682px;
  height: min(66.6vw, 682px);

  overflow: hidden;

  background:
    #4f9fa2
    url("../images/hero-background.png")
    center top / cover
    no-repeat;

  color: #fff;
}

.hero::before,
.hero::after {
  display: none;
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-copy {
  position: relative;
  z-index: 2;

  width: 43%;
  min-height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 155px 0 54px 4.9vw;
}

.hero h1 {
  margin: 0 0 24px;

  color: #fff;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(6.8rem, 9.5vw, 9.8rem);
  font-weight: 400;

  line-height: .76;
  letter-spacing: -.035em;
}

.hero-roles {
  display: flex;
  align-items: center;

  gap: 15px;

  margin: 0 0 25px;

  color: #fff;

  font-size: 1.22rem;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: .035em;
  text-transform: uppercase;

  white-space: nowrap;
}

.hero-roles b,
.hero-location b {
  color: #fff;
  font-size: 1.25em;
}

.hero-location {
  margin: 0;

  color: #fff;

  font-size: 1rem;
  font-weight: 600;

  letter-spacing: .035em;
  text-transform: uppercase;
}

.hero-location .icon {
  margin-right: 7px;
  vertical-align: -.28em;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
  display: flex;

  gap: 20px;

  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 20px;

  border: 1px solid var(--ink);

  background: transparent;

  color: inherit;

  font-family: "Inter", sans-serif;
  font-weight: 800;

  text-decoration: none;

  cursor: pointer;

  transition:
    transform .15s ease,
    filter .15s ease,
    background .15s ease,
    border-color .15s ease;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.hero .button {
  min-width: 183px;
  height: 56px;

  padding: 0 25px;

  border: 2px solid #fff;
  border-radius: 4px;

  font-size: .97rem;
  font-weight: 700;

  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero .button.primary {
  background: var(--teal);

  color: #fff;
}

.hero .button.secondary {
  background: rgba(20, 124, 132, .22);

  color: #fff;
}

.hero .button:hover {
  transform: translateY(-1px);

  filter: brightness(1.08);
}

/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  max-width: var(--max);

  margin: auto;

  padding: 110px 24px;
}

.section h2 {
  margin: .1em 0 .35em;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 400;

  line-height: .92;
  letter-spacing: -.025em;
}

.eyebrow {
  margin: 0 0 16px;

  font-size: .72rem;
  font-weight: 900;

  letter-spacing: .16em;
  text-transform: uppercase;
}

.lede {
  max-width: 560px;

  font-size: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 78px;

  align-items: center;
}

.section-copy p {
  font-size: 1.08rem;
}

.quick-links {
  display: flex;

  gap: 22px;

  margin-top: 26px;

  font-weight: 800;
}


/* =========================================================
   PORTRAITS
   ========================================================= */

.portrait-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 18px;

  align-items: stretch;
}

.portrait-stack img {
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}


/* =========================================================
   DARK / REELS SECTION
   ========================================================= */

.dark {
  max-width: none;

  padding-left:
    max(24px, calc((100vw - var(--max)) / 2));

  padding-right:
    max(24px, calc((100vw - var(--max)) / 2));

  background: var(--ink);

  color: #f7f3eb;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 38px;
}

.section-heading > p {
  max-width: 380px;

  color: inherit;

  opacity: .72;
}

.video-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 22px;
}

.video-card {
  overflow: hidden;

  background: #223136;
}

.video-wrap {
  position: relative;

  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}

.card-copy {
  padding: 18px 20px 22px;
}

.card-copy h3 {
  margin: 0;

  font-size: 1.25rem;
}

.tag {
  margin: 0 0 4px;

  color: var(--aqua);

  font-size: .72rem;
  font-weight: 900;

  letter-spacing: .12em;
  text-transform: uppercase;
}


/* =========================================================
   MODELING
   ========================================================= */

.modeling {
  display: grid;

  grid-template-columns: 1.05fr .95fr;

  gap: 70px;

  align-items: center;
}

.model-image {
  max-height: 740px;

  object-fit: cover;
}

.stats {
  display: grid;

  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;

  margin-top: 48px;

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

.stats div {
  display: flex;
  justify-content: space-between;

  gap: 28px;

  padding: 20px 0;

  border-bottom: 1px solid var(--line);
}

.stats span {
  color: var(--muted);
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-section {
  padding-top: 50px;
}

.gallery-grid {
  display: grid;

  grid-template-columns: 1.6fr .8fr;
  grid-template-rows: 1fr 1fr;

  gap: 16px;
}

.gallery-item {
  min-height: 300px;

  padding: 0;

  overflow: hidden;

  border: 0;

  background: none;

  cursor: zoom-in;
}

.gallery-item.wide {
  grid-row: 1 / 3;
}

.gallery-item img {
  height: 100%;

  object-fit: cover;

  transition: transform .35s ease;
}

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


/* =========================================================
   EXPANDED PORTFOLIO
   ========================================================= */

.portfolio-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.portfolio-grid .gallery-item {
  min-height: 0;

  aspect-ratio: 4 / 3;
}

.portfolio-grid .gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.editorial-grid {
  grid-template-columns:
    1.35fr .8fr .8fr;
}

.editorial-grid .hero-tile {
  grid-row: span 2;

  aspect-ratio: auto;
}

.editorial-grid .portrait {
  aspect-ratio: 3 / 4;
}

.editorial-grid .landscape {
  aspect-ratio: 3 / 2;
}


/* =========================================================
   MEDIA / RESUME
   ========================================================= */

.media {
  display: grid;

  grid-template-columns: .8fr 1.2fr;

  gap: 72px;

  align-items: start;
}

.materials-wrap {
  display: grid;

  gap: 28px;
}

.material-cards {
  display: grid;

  grid-template-columns: 1fr;

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

.material-cards article {
  padding: 28px 24px 28px 0;

  border-bottom: 1px solid var(--line);
}

.material-cards h3 {
  margin-top: 0;

  font-size: 1.25rem;
}

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

.material-link {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-weight: 900;
  text-decoration: underline;
}

.material-link .icon {
  width: 1.1em;
  height: 1.1em;
}

.status {
  display: inline-block;

  color: var(--coral);

  font-size: .75rem;
  font-weight: 900;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.headshot-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.headshot-grid .headshot {
  min-height: 0;

  aspect-ratio: 2 / 3;
}

.headshot-grid .headshot img {
  height: 100%;

  object-fit: cover;
}

.text-button {
  padding: 0;

  border: 0;

  background: none;

  color: inherit;

  font: inherit;
  font-weight: 900;

  text-decoration: underline;

  cursor: pointer;
}

.text-button,
.text-link,
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: .4em;
}

.text-button .icon,
.text-link .icon {
  width: 1.1em;
  height: 1.1em;
}


/* =========================================================
   PRESS
   ========================================================= */

.press {
  max-width: none;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  padding-left:
    max(24px, calc((100vw - var(--max)) / 2));

  padding-right:
    max(24px, calc((100vw - var(--max)) / 2));

  background: var(--aqua);
}

.press-image img {
  aspect-ratio: 16 / 10;

  object-fit: cover;
}

.press h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
}

.text-link {
  font-weight: 900;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  display: grid;

  grid-template-columns: .8fr 1.2fr;

  gap: 80px;
}

.email {
  font-weight: 900;
}

.contact-form {
  display: grid;

  gap: 18px;
}

.contact-form label {
  font-size: .78rem;
  font-weight: 900;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  display: block;

  width: 100%;

  margin-top: 6px;
  padding: 13px;

  border: 1px solid var(--line);

  background: var(--paper);

  font: inherit;
}

.honeypot {
  position: absolute !important;

  left: -9999px !important;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.social-links {
  display: flex;

  gap: 16px;
}

.social-links a {
  font-weight: 800;

  text-decoration: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  max-width: var(--max);

  margin: auto;

  padding: 40px 24px 70px;

  display: grid;

  grid-template-columns: 1fr auto auto;

  gap: 25px;

  align-items: center;

  border-top: 1px solid var(--line);

  font-size: .8rem;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
  position: fixed;
  z-index: 100;

  inset: 0;

  padding: 50px;

  align-items: center;
  justify-content: center;

  background: rgba(7, 13, 15, .94);
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox img {
  max-width: 94vw;
  max-height: 88vh;

  object-fit: contain;
}

.lightbox button {
  position: absolute;

  top: 12px;
  right: 20px;

  border: 0;

  background: none;

  color: #fff;

  cursor: pointer;
}

.lightbox button .icon {
  display: block;
  width: 36px;
  height: 36px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1150px) {

  .site-header {
    grid-template-columns:
      220px 1fr 82px;

    padding: 0 3.5vw;
  }

  .main-nav {
    gap: 1.8vw;
  }

  .site-header .main-nav a {
    font-size: .84rem;
  }

  .hero-copy {
    width: 47%;

    padding-left: 4vw;
  }

  .hero h1 {
    font-size:
      clamp(5.8rem, 9.5vw, 8rem);
  }

  .hero-roles {
    gap: 10px;

    font-size: 1rem;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

  /* HEADER */

  .site-header {
    grid-template-columns: 1fr auto;

    height: 78px;

    padding: 0 22px;
  }

  .site-header .brand {
    font-size: 1.8rem;
  }

  .header-social {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;

    padding: 8px 12px;

    border:
      1px solid rgba(255, 255, 255, .7);

    border-radius: 3px;

    background:
      rgba(0, 0, 0, .12);

    color: #fff;

    font-family: "Inter", sans-serif;
    font-weight: 700;

    cursor: pointer;
  }

  .nav-toggle .icon {
    width: 24px;
    height: 24px;
  }

  .main-nav {
    display: none;

    position: absolute;

    top: 70px;
    right: 20px;

    flex-direction: column;

    gap: 0;

    min-width: 190px;

    padding: 12px 18px;

    border-radius: 5px;

    background:
      rgba(20, 103, 109, .97);
  }

  .main-nav.open {
    display: flex;
  }

  .site-header .main-nav a {
    padding: 10px 8px;
  }


  /* HERO */

  .hero {
    min-height: 720px;
    height: 720px;

    background-color: #4f9fa2;

    background-image:
      url("../images/hero-background.png");

    background-position: 57% top;

    background-size:
      auto 720px;

    background-repeat:
      no-repeat;
  }

  .hero-copy {
    width: 90%;
    min-height: 720px;

    padding:
      155px 24px 65px;

    justify-content: flex-end;

    /*
     * CSS gradient only.
     * This helps text readability on mobile.
     */
    background:
      linear-gradient(
        90deg,
        rgba(35, 126, 132, .92) 0%,
        rgba(35, 126, 132, .78) 48%,
        rgba(35, 126, 132, 0) 86%
      );
  }

  .hero h1 {
    font-size:
      clamp(5.2rem, 20vw, 7rem);

    line-height: .76;
  }

  .hero-roles {
    flex-wrap: wrap;

    white-space: normal;

    font-size: .95rem;
  }


  /* GENERAL SECTIONS */

  .split,
  .modeling,
  .media,
  .press,
  .contact {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .section {
    padding: 80px 24px;
  }

  .section h2 {
    font-size:
      clamp(3rem, 12vw, 4.7rem);
  }

  .portrait-stack {
    max-width: 600px;
  }


  /* VIDEOS */

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

  .video-card.featured {
    grid-row: auto;
  }

  .section-heading {
    align-items: start;

    flex-direction: column;
  }


  /* GALLERIES */

  .gallery-grid {
    grid-template-columns: 1fr 1fr;

    grid-template-rows: auto;
  }

  .gallery-item.wide {
    grid-column: 1 / 3;

    grid-row: auto;
  }

  .portfolio-grid,
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-grid .hero-tile {
    grid-column: 1 / 3;

    grid-row: auto;

    aspect-ratio: 4 / 3;
  }


  /* MEDIA */

  .material-cards {
    grid-template-columns: 1fr;
  }

  .media-intro {
    max-width: 720px;
  }

  .headshot-grid {
    max-width: 620px;
  }


  /* PRESS */

  .press {
    padding-top: 80px;
    padding-bottom: 80px;
  }


  /* FOOTER */

  footer {
    grid-template-columns: 1fr;
  }

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


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

  .hero {
    min-height: 700px;
    height: 700px;

    background-size: auto 700px;
    background-position: 61% top;
  }

  .hero-copy {
    min-height: 700px;

    padding:
      140px 20px 55px;
  }

  .hero h1 {
    font-size:
      clamp(4.8rem, 22vw, 6.3rem);

    line-height: .76;
  }

  .hero-roles {
    gap: 7px;

    font-size: .86rem;
  }

  .hero-actions {
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }

  .hero .button {
    min-width: 175px;

    height: 52px;
  }

  .portrait-stack {
    gap: 10px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    display: block;

    width: 100%;
    min-height: 0;

    margin-bottom: 10px;
  }

  .portfolio-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid .hero-tile {
    grid-column: auto;
  }

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

  .stats {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .social-links {
    gap: 12px;
  }
}
