/* =========================================================
   RESET + GLOBALS
   ========================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #111;
    font-family: Helvetica,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

/* =========================================================
   SITE HEADER + NAVIGATION
   ========================================================= */
.site-header {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 42px;
}

.site-logo img {
    width: 190px;
}

.desktop-navigation {
    display: flex;
    gap: 28px;
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.desktop-navigation a {
    position: relative;
}

.desktop-navigation a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: .25s;
}

.desktop-navigation a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 34px;
    height: 24px;
    position: relative;
    z-index: 110;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: .3s;
}

.menu-toggle span:first-child {
    top: 7px;
}

.menu-toggle span:last-child {
    top: 17px;
}

.menu-open .menu-toggle span:first-child {
    top: 12px;
    transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
    top: 12px;
    transform: rotate(-45deg);
}

.mobile-navigation {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    padding: 120px 24px 48px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s;
}

.mobile-navigation a {
    font-size: clamp(34px,10vw,58px);
    line-height: 1;
    letter-spacing: -.04em;
}

.menu-open .mobile-navigation {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* =========================================================
   HOME / HERO
   ========================================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    background: #111;
    overflow: hidden;
    color: #fff;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.home-nav {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 20;
}

.home-nav .desktop-navigation {
    color: #fff;
}

.home-nav .menu-toggle {
    display: none;
}

.specimen-band {
    position: absolute;
    left: 0;
    top: 39%;
    width: 100%;
    height: 140px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 1.1s cubic-bezier(.35,0,.2,1);
}

.home-intro-complete .specimen-band, .returning-home .specimen-band {
    transform: translateY(-50%) scaleX(1);
}

.specimen-band img {
    width: min(1005px,85vw);
    max-height: 105px;
    object-fit: contain;
    opacity: 0;
    transition: opacity .45s ease .85s;
}

.home-intro-complete .specimen-band img, .returning-home .specimen-band img {
    opacity: 1;
}

.hero-location, .instagram-link {
    position: absolute;
    bottom: 25px;
    z-index: 20;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-location {
    left: 28px;
    display: flex;
    flex-direction: column;
}

.instagram-link {
    right: 28px;
}

/* =========================================================
   SHARED INNER PAGES
   ========================================================= */
.page-main {
    padding: 70px 42px 90px;
}

.page-intro {
    max-width: 880px;
    margin-bottom: 78px;
}

.eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.page-intro h1, .text-page h1 {
    font-size: clamp(38px,5vw,78px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.055em;
}

/* =========================================================
   COLLECTION PAGE
   ========================================================= */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 52px 18px;
}

.collection-card figure {
    display: block;
}

.collection-card img {
    width: 100%;
    aspect-ratio: 626/913;
    object-fit: cover;
    background: #eee;
    transition: transform .5s ease;
}

.collection-card:hover img {
    transform: scale(1.012);
}

.collection-card figcaption {
    margin-top: 10px;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* =========================================================
   MODEL PROFILE PAGES
   ========================================================= */
.model-main {
    padding: 26px 42px 72px;
}

.model-heading {
    display: grid;
    grid-template-columns: 220px minmax(0,1fr);
    margin-bottom: 68px;
}

.model-heading>div {
    grid-column: 2;
}

.model-heading h1 {
    font-size: clamp(34px,3vw,52px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.model-measurements {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 18px;
    font-size: 9px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.model-gallery {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.model-gallery::-webkit-scrollbar {
    display: none;
}

.model-gallery img, .model-gallery video {
    flex: 0 0 auto;
    width: auto;
    height: min(72vh,820px);
    max-width: none;
    object-fit: contain;
    scroll-snap-align: start;
    background: #f3f3f3;
}

/* =========================================================
   ARCHIVE / NEWS FEED
   ========================================================= */
.archive-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 40px;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.archive-controls button {
    opacity: .45;
}

.archive-controls button.is-active, .archive-controls button:hover {
    opacity: 1;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 40px 28px;
    align-items: start;
}

.archive-item img {
    width: 100%;
    height: auto;
    display: block;
}

.archive-item.featured {
    grid-column: 1 / -1;
}

.archive-placeholder {
    grid-column: 1/7;
    min-height: 380px;
    background: #f1f1f1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

.archive-placeholder p {
    font-size: 28px;
    letter-spacing: -.03em;
}

.archive-placeholder span {
    max-width: 520px;
    font-size: 12px;
    line-height: 1.5;
}

/* =========================================================
   ABOUT + CONTACT
   ========================================================= */
.text-page {
    max-width: 1240px;
}

.text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 100px 0 0 24%;
}

.text-columns p, .contact-lines {
    font-size: 18px;
    line-height: 1.55;
}

.contact-lines {
    margin-top: 100px;
}

.contact-lines p {
    margin-bottom: 8px;
}

/* =========================================================
   RESPONSIVE: TABLET;
   ========================================================= */
@media (max-width:1024px) {
    .collection-grid {
        grid-template-columns: repeat(3,1fr);
    }
    .model-heading {
        grid-template-columns: 170px 1fr;
    }
    .site-header {
        padding: 28px;
    }
    .page-main, .model-main {
        padding-left: 28px;
        padding-right: 28px;
    }
}

/* =========================================================
   RESPONSIVE: MOBILE;
   ========================================================= */
@media (max-width:768px) {
    .site-header {
        padding: 22px 20px;
    }
    .site-logo img {
        width: 145px;
    }
    .desktop-navigation {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .home-nav {
        top: 20px;
        right: 20px;
    }
    .home-nav .menu-toggle {
        display: block;
        color: #fff;
    }
    .specimen-band {
        height: 96px;
    }
    .page-main {
        padding: 46px 20px 70px;
    }
    .page-intro {
        margin-bottom: 52px;
    }
    .collection-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 34px 12px;
    }
    .model-main {
        padding: 24px 20px 42px;
    }
    .model-heading {
        display: block;
        margin-bottom: 44px;
    }
    .model-gallery {
        margin-right: -20px;
        padding-right: 20px;
    }
    .model-gallery img, .model-gallery video {
        width: 88vw;
        height: auto;
    }
    .archive-placeholder {
        grid-column: 1/-1;
    }
    .text-columns {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 60px 0 0;
    }
    .contact-lines {
        margin-top: 60px;
    }
}
/* =========================================================
   RETURN PAGE
========================================================= */

.return-page {
  min-height: 100vh;
  overflow: hidden;
  background: #f6f6f3;
  color: #111;
}

.return-background {
  position: fixed;
  inset: 0;
}

.return-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 246, 243, 0.68);
}

.return-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.42;
  filter: grayscale(100%);
  transform: scale(1.025);
  animation: return-image-in 2.2s ease forwards;
}

.return-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  opacity: 0;
  animation: return-content-in 1.3s ease 0.65s forwards;
}

.return-logo {
  width: min(230px, 46vw);
  margin-bottom: 70px;
}

.return-eyebrow {
  margin-bottom: 18px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.return-content h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.return-link {
  position: relative;
  margin-top: 52px;
  padding-bottom: 7px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.return-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transition: transform 0.35s ease;
}

.return-link:hover::after {
  transform: scaleX(1);
}

@keyframes return-image-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }

  to {
    opacity: 0.42;
    transform: scale(1.025);
  }
}

@keyframes return-content-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .return-logo {
    margin-bottom: 48px;
  }

  .return-content h1 {
    font-size: clamp(40px, 14vw, 70px);
  }
}