:root {
  --ink: #fbf8f7;
  --paper: #000f22;
  --sage: #000f22;
  --clay: #fbf8f7;
  --mist: #727b86;
  --line: rgba(251, 248, 247, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  min-height: 94px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
}

.brand img { display: block; width: clamp(190px, 18vw, 250px); height: auto; }
.footer-brand img { width: clamp(100px, 15vw, 220px); height: auto; }
nav { display: flex; gap: 38px; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
nav a, .footer-links a { position: relative; }
nav a::after, .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  border-bottom: 1px solid currentColor;
  transition: right .25s ease;
}
nav a:hover::after, .footer-links a:hover::after { right: 0; }
.menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-button span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.menu-button span:nth-child(1) { top: 14px; }
.menu-button span:nth-child(2) { top: 21px; }
.menu-button span:nth-child(3) { top: 28px; }

.hero { padding: 8vh 4vw 12vh; position: relative; overflow: hidden; }
.eyebrow, .section-label {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .18em;
  font-weight: 500;
}
.hero h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin: 0;
  line-height: .88;
  letter-spacing: -.04em;
}
.hero-heading { margin-bottom: 4vh; }

.hero h1 { font-size: clamp(54px, 7vw, 128px); text-align: center; }
.hero-carousel { width: 100%; position: relative; }
.hero-viewport { overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; scroll-snap-type: x mandatory; }
.hero-viewport::-webkit-scrollbar { display: none; }
.hero-track { display: flex; width: max-content; padding-inline: 13vw; }
.hero-slide { flex: 0 0 auto; width: auto; height: clamp(280px, 40vw, 520px); scroll-snap-align: center; overflow: hidden; background: #09182a; }
.hero-slide img { display: block; width: auto; max-width: none; height: 100%; object-fit: contain; }
.hero-controls { position: absolute; inset: 0; pointer-events: none; }
.carousel-button { position: absolute; top: 50%; z-index: 2; width: 42px; height: 56px; padding: 0; border: 0; background: transparent; color: #fff; cursor: pointer; pointer-events: auto; transform: translateY(-50%); font-size: 42px; line-height: 1; -webkit-text-stroke: 1px #000; text-shadow: 0 0 2px #000; }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }
.carousel-button:hover, .carousel-button:focus-visible { color: #fff; transform: translateY(-50%) scale(1.08); }
em { color: var(--clay); font-weight: 400; }
.hero-bottom { display: flex; align-items: center; justify-content: space-between; margin-bottom: -40px; position: relative; z-index: 2; }
.hero-bottom p { width: 300px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; line-height: 1.15; }
.arrow {
  width: 18px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  transition: none;
}
.arrow.open::before {
  left: 4px;
  top: 0;
  width: 9px;
  height: 9px;
  background: transparent;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.portfolio { padding: 110px 4vw 130px; }
.collections { padding-top: 70px; }
.section-label { display: flex; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.portfolio-intro { display: grid; grid-template-columns: 1.4fr .6fr; gap: 10vw; padding: 70px 0 100px; align-items: end; }
.portfolio-intro h2 { font-size: clamp(60px, 8vw, 118px); }
.portfolio-intro p { font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1.35; }
.collection { border-top: 1px solid var(--line); }
.collection:last-child { border-bottom: 1px solid var(--line); }
.collection-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 9% 1fr auto 35px;
  align-items: center;
  gap: 20px;
  padding: 29px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.collection-trigger > span:first-child, .collection-count { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.collection-title { font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 5vw, 78px); line-height: 1; }
.collection-panel { display: grid; grid-template-rows: 0fr; }
.collection-panel > * { overflow: hidden; }
.collection.is-open .collection-panel { grid-template-rows: 1fr; }
.collection-copy { display: flex; justify-content: space-between; padding: 15px 0 35px 9%; }
.collection-copy p { max-width: 420px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; margin: 0; }
.collection-copy span { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.gallery-grid { columns: 3 280px; column-gap: 14px; padding-bottom: 50px; }
.gallery-photo { display: block; width: 100%; margin: 0 0 14px; padding: 0; border: 0; background: #999a96; cursor: zoom-in; break-inside: avoid; overflow: hidden; }
.gallery-photo img { display: block; width: 100%; height: auto; transition: transform .45s ease; }
.gallery-photo:hover img { transform: scale(1.025); }
.videography-grid {
  display: grid;
  grid-template-columns: minmax(0, 1100px);
  justify-content: center;
  gap: 20px;
  padding-bottom: 50px;
}
.video-player {
  position: relative;
  overflow: hidden;
  background: #09182a;
}
.video-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  cursor: pointer;
}
.video-playback {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: rgba(0, 15, 34, .62);
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, background-color .2s ease;
}
.video-playback::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  margin-left: 21px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}
.video-player.is-playing .video-playback {
  opacity: 0;
}
.video-player.is-playing .video-playback::before {
  width: 14px;
  height: 18px;
  margin-left: auto;
  border: 0;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
}
.video-player.is-playing:hover .video-playback,
.video-playback:focus-visible {
  opacity: 1;
}
.video-playback:hover,
.video-playback:focus-visible {
  background: rgba(0, 15, 34, .85);
}
.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 32px; border: 0; background: rgba(0,15,34,.98); color: var(--ink); }
.lightbox[open] { display: grid; grid-template-columns: 70px 1fr 70px; grid-template-rows: 45px 1fr 30px; align-items: center; }
.lightbox::backdrop { background: rgba(0,15,34,.94); }
.lightbox img { grid-column: 2; grid-row: 1 / 4; max-width: 100%; max-height: calc(100vh - 64px); justify-self: center; object-fit: contain; }
.lightbox button { border: 0; background: transparent; color: inherit; cursor: pointer; }
.lightbox-close { grid-column: 3; grid-row: 1; z-index: 1; align-self: start; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
.lightbox-nav { font-size: 30px; z-index: 1; }
.lightbox-prev { grid-column: 1; grid-row: 2; }
.lightbox-next { grid-column: 3; grid-row: 2; }
.lightbox-count { grid-column: 2; grid-row: 3; z-index: 1; justify-self: center; margin: 0; font-size: 9px; letter-spacing: .15em; }
.about { background: var(--sage); color: var(--ink); padding: 80px 4vw 120px; }
.about > h2 { font-family: Arial, Helvetica, sans-serif; font-size: clamp(32px, 5vw, 70px); line-height: 1.1; letter-spacing: -.03em; margin-top: 80px; }
.section-label.light { border-color: var(--line); }
.about-grid { display: grid; grid-template-columns: minmax(280px, .8fr) 1.2fr; gap: 9vw; align-items: center; padding-top: 80px; }
.about-portrait { margin: 0; overflow: hidden; }
.about-portrait img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }
.portrait-placeholder { background: #8e908c; aspect-ratio: .78; padding: 22px; text-transform: uppercase; letter-spacing: .15em; font-size: 9px; }
.about-copy { max-width: 700px; }
.kicker { text-transform: uppercase; letter-spacing: .16em; font-size: 10px; }
.about-copy h2 { font-size: clamp(58px, 7vw, 105px); margin: 28px 0 45px; }
.about-copy h2 em { color: var(--paper); }
.about-copy > p:not(.kicker) { max-width: 540px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; line-height: 1.45; margin-left: auto; }
.about-copy a { display: inline-block; margin: 30px 0 0 calc(100% - 230px); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; border-bottom: 1px solid; padding-bottom: 8px; }

.contact { padding: 120px 4vw 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 8vw; position: relative; }
.contact::after { content: ""; position: absolute; top: 270px; bottom: 90px; left: 50%; width: 1px; background: var(--line); }
.contact-heading { grid-column: 1 / -1; }
.contact-details { padding-top: 70px; }
.contact-details > p { max-width: 460px; margin: 0 0 48px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; line-height: 1.35; }
.contact-links { border-top: 1px solid var(--line); }
.contact-links a { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-links span { flex: 0 0 auto; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.contact-links strong { overflow-wrap: anywhere; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; text-align: right; }
.contact-links a:hover strong { text-decoration: underline; text-underline-offset: 5px; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 25px; padding-top: 200px; }
.netlify-honeypot {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}
label { display: flex; flex-direction: column; gap: 12px; }
label span { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
#contact-form > label:not(.full) > span { transform: translateY(-8px); }
label.full { grid-column: 1 / -1; }
input, textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  padding: 10px 0 15px;
  color: var(--ink);
  outline: none;
  resize: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}
input:focus, textarea:focus { border-color: var(--ink); }
form button {
  grid-column: 2;
  border: 1px solid var(--ink);
  background: var(--clay);
  color: var(--paper);
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 16px 30px;
  justify-self: end;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  transition: background-color .25s ease, color .25s ease;
}
form button:hover { background: transparent; color: var(--ink); }
form button:disabled { cursor: wait; opacity: .65; }

footer {
  background: var(--paper);
  color: var(--ink);
  padding: 18px 4vw 38px;
  text-align: center;
}
.footer-brand {
  display: flex;
  width: 100%;
  justify-content: center;
}
.footer-brand img {
  width: clamp(180px, 24vw, 340px);
  height: auto;
  margin-top: -28px;
  transform: translateY(28px);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 75px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.footer-meta a { padding-bottom: 5px; border-bottom: 1px solid currentColor; }

@media (max-width: 760px) {
  .site-header { min-height: 76px; }
  .brand img { width: clamp(155px, 47vw, 190px); }
  .menu-button { display: block; }
  nav { display: none; position: absolute; left: 0; top: 76px; width: 100%; background: var(--paper); padding: 40px 4vw; flex-direction: column; gap: 28px; border-bottom: 1px solid var(--line); }
  nav.open { display: flex; }
  .hero { min-height: 50vh; padding: 56px 4vw 48px; }
  .hero h1 { font-size: clamp(48px, 14vw, 82px); }
  .carousel-button { width: 38px; height: 38px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .portfolio { padding-top: 64px; padding-bottom: 72px; }
  .collections { padding-top: 24px; }
  .collections .collection:first-child { border-top: 0; }
  .section-label span { display: inline; }
  .collection-trigger { grid-template-columns: 32px 1fr 25px; padding: 24px 0; }
  .collection-count { display: none; }
  .collection-title { font-size: 42px; }
  .gallery-grid { columns: 2 140px; }
  .lightbox { padding: 12px; }
  .lightbox[open] { grid-template-columns: 42px 1fr 42px; }
  .lightbox img { max-height: calc(100vh - 24px); }
  .about { padding-top: 48px; padding-bottom: 64px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .about-portrait { width: min(100%, 480px); }
  .about-copy h2 { margin-bottom: 30px; }
  .about-copy > p:not(.kicker) { margin-left: 0; }
  .about-copy a { margin-left: 0; }
  .contact { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 32px; }
  .contact::after { display: none; }
  .contact-details { padding-top: 20px; }
  .contact-details > p { margin-bottom: 35px; }
  .contact-links a { align-items: flex-start; flex-direction: column; gap: 8px; }
  .contact-links strong { text-align: left; }
  form { padding-top: 40px; grid-template-columns: 1fr; }
  form label, form label.full, form button { grid-column: 1; }
  .form-status:empty { display: none; }
  footer { padding-top: 0; }
  .footer-brand img { width: min(70vw, 280px); }
  .footer-meta { margin-top: 55px; line-height: 1.6; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
