:root {
  --ink: #111111;
  --charcoal: #252525;
  --muted: #555555;
  --line: #dedbd5;
  --paper: #ffffff;
  --soft: #f6f4f0;
  --accent: #b4181b;
  --max: 1540px;
  --gutter: clamp(18px, 4vw, 64px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
iframe {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  color: inherit;
  cursor: pointer;
  font: inherit;
}

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

[id] {
  scroll-margin-top: 92px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(222, 219, 213, .78);
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  justify-content: space-between;
  left: 0;
  padding: 18px var(--gutter);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  height: auto;
  object-fit: contain;
  width: clamp(126px, 12vw, 192px);
}

.brand-logo + .brand-fallback {
  display: none;
}

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

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  font-size: 11px;
  height: 32px;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  width: 44px;
}

.brand-mark::after {
  background: var(--accent);
  content: "";
  height: 7px;
  position: absolute;
  right: 6px;
  top: 6px;
  width: 7px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  justify-content: flex-end;
}

.nav-links a,
.nav-dropdown-toggle,
.menu-toggle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a:not(.nav-button) {
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.nav-links a:not(.nav-button):hover {
  border-color: currentColor;
}

.nav-dropdown {
  align-items: center;
  display: flex;
  margin: -24px 0;
  padding: 24px 0;
  position: relative;
}

.nav-dropdown-toggle {
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  padding: 0 0 3px;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  border-color: currentColor;
}

.nav-dropdown-menu {
  background: var(--paper);
  border: 1px solid var(--line);
  left: 50%;
  min-width: 236px;
  opacity: 0;
  padding: 10px 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  transition: opacity .2s var(--ease);
  z-index: 20;
}

.nav-dropdown-menu::before {
  content: "";
  height: 32px;
  left: -18px;
  position: absolute;
  right: -18px;
  top: -32px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown-menu a {
  border: 0;
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--accent);
}

.nav-button,
.primary-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.nav-button {
  border: 1px solid var(--ink);
}

.nav-button:hover {
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 6px 0;
}

.hero {
  background: var(--soft);
  height: clamp(660px, 94vh, 980px);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-video {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.hero-video iframe {
  border: 0;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 177.7778vh;
}

.hero-copy {
  align-items: flex-end;
  display: flex;
  inset: 0;
  justify-content: flex-start;
  padding: 0 var(--gutter) clamp(40px, 6vw, 72px);
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.hero-copy p {
  color: var(--paper);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 760px;
  text-wrap: balance;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(88px, 10vw, 140px) var(--gutter);
}

.section-heading {
  display: grid;
  gap: clamp(22px, 4vw, 58px);
  grid-template-columns: minmax(0, 619px) minmax(260px, .9fr);
  justify-content: space-between;
  margin-bottom: clamp(46px, 7vw, 92px);
}

.section-heading h1,
.section-heading h2,
.about-statement h1,
.story-copy h2 {
  font-size: clamp(19px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.section-heading > p:last-child {
  align-self: end;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  grid-column: 2;
  grid-row: 2;
  line-height: 1.55;
  margin: 0;
}

.section-heading .section-eyebrow,
.section-heading h1,
.section-heading h2 {
  grid-column: 1;
  max-width: 619px;
  width: 100%;
}

.section-eyebrow {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.section-eyebrow::after {
  background: var(--accent);
  content: "";
  display: block;
  height: 1px;
  margin-top: 14px;
  width: 28px;
}

.service-grid {
  display: grid;
  gap: clamp(36px, 5vw, 72px) clamp(26px, 4vw, 58px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-item {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.founder-copy h2 {
  font-size: clamp(18px, 1vw, 22px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 18px;
}

.service-item h2,
.package-item h3 {
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 18px;
}

.service-item p,
.package-item p,
.package-item li,
.founder-copy p,
.story-copy p {
  color: var(--muted);
}

.service-item p,
.package-item p,
.founder-copy p,
.story-copy p {
  margin: 0;
}

.editorial-image {
  background: var(--paper);
  padding: 0 var(--gutter) clamp(88px, 10vw, 140px);
}

.portrait-grid {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(4, clamp(132px, 15vw, 218px));
  margin: 0 auto;
  max-width: var(--max);
}

.portrait-grid img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.portrait-a { grid-area: 1 / 1 / 2 / 2; }
.portrait-b { grid-area: 2 / 1 / 4 / 2; }
.portrait-c { grid-area: 4 / 1 / 5 / 2; }
.portrait-d { grid-area: 1 / 2 / 3 / 3; }
.portrait-e { grid-area: 3 / 2 / 5 / 3; }
.portrait-f { grid-area: 1 / 3 / 3 / 4; }
.portrait-g { grid-area: 3 / 3 / 4 / 4; }
.portrait-h { grid-area: 4 / 3 / 5 / 4; }

.section-packages {
  background: var(--soft);
  max-width: none;
}

.section-packages .section-heading,
.package-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.package-grid {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-item {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.package-item ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 30px 0 0;
  padding: 18px 0 0;
}

.package-price {
  color: var(--ink);
  font-weight: 600;
  margin-top: 14px;
}

.package-item li {
  padding: 7px 0;
}

.package-item li::before {
  content: "";
  background: currentColor;
  display: inline-block;
  height: 3px;
  margin-right: 10px;
  transform: translateY(-3px);
  width: 3px;
}

.portfolio-section {
  background: var(--paper);
}

.portfolio-heading {
  padding: clamp(64px, 8vw, 110px) var(--gutter) 28px;
}

.portfolio-heading .section-eyebrow {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.portfolio-panel {
  height: 600px;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.portfolio-panel + .portfolio-panel {
  margin-top: 4px;
}

.portfolio-panel img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.portfolio-panel .portfolio-team-image {
  object-position: center 42%;
}

.portfolio-panel h2 {
  color: var(--paper);
  font-size: 72px;
  font-weight: 400;
  left: 50%;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  max-width: min(760px, calc(100% - var(--gutter) * 2));
  position: absolute;
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.gallery-section {
  background: var(--paper);
  padding: clamp(20px, 3vw, 32px) var(--gutter) clamp(92px, 10vw, 144px);
}

.gallery-grid {
  display: grid;
  gap: clamp(12px, 1.6vw, 24px);
  grid-auto-flow: dense;
  grid-auto-rows: minmax(210px, 15vw);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.gallery-item {
  margin: 0;
  min-height: 260px;
  overflow: hidden;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

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

.primary-button {
  align-self: end;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
  min-width: 154px;
}

.primary-button:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--paper);
}

.contact-area {
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(160px, .55fr) minmax(0, 1.2fr) minmax(220px, .7fr);
  padding: clamp(66px, 8vw, 112px) var(--gutter);
}

.contact-copy h2 {
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
}

.contact-copy p,
.contact-details p {
  color: var(--muted);
  margin: 0;
}

.contact-details {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.contact-details a {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.portfolio-page {
  background: var(--paper);
}

.portfolio-detail-hero {
  height: clamp(540px, 72vh, 780px);
  margin-top: 68px;
  overflow: hidden;
  position: relative;
}

.portfolio-detail-hero img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.portfolio-detail-hero h1 {
  color: var(--paper);
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 400;
  left: 50%;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  max-width: min(980px, calc(100% - var(--gutter) * 2));
  position: absolute;
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
  top: 50%;
  transform: translate(-50%, -50%);
}

.portfolio-detail-body {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(160px, .55fr) minmax(0, 1.4fr) minmax(220px, .8fr);
  padding: clamp(72px, 9vw, 120px) var(--gutter);
}

.portfolio-detail-copy h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
}

.portfolio-detail-copy p,
.portfolio-detail-list p {
  color: var(--muted);
  margin: 0;
}

.portfolio-detail-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.headshot-gallery-section {
  background: var(--paper);
  padding: 0 var(--gutter) clamp(82px, 9vw, 130px);
}

.headshot-gallery {
  column-count: 2;
  column-gap: 10px;
  margin: 0 auto;
  max-width: 910px;
  width: 100%;
}

.headshot-gallery img {
  break-inside: avoid;
  display: block;
  height: auto;
  margin: 0 0 10px;
  width: 100%;
}

.portfolio-detail-contact {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  padding: 34px var(--gutter) 44px;
}

.portfolio-detail-contact a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.about-hero {
  margin-top: 68px;
  padding: var(--gutter) var(--gutter) 0;
}

.about-hero img {
  height: clamp(520px, 74vh, 860px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.about-statement {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(64px, 8vw, 112px) var(--gutter) clamp(52px, 6vw, 88px);
}

.about-statement .section-eyebrow {
  margin-bottom: 24px;
}

.about-statement h1 {
  max-width: 1280px;
}

.founders {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 var(--gutter) clamp(88px, 10vw, 142px);
}

.founder-profile {
  display: grid;
  gap: 24px;
}

.founder-image {
  align-items: center;
  background: var(--soft);
  display: flex;
  justify-content: center;
  min-height: clamp(440px, 58vw, 760px);
  padding: clamp(12px, 2vw, 24px);
}

.founder-image img {
  height: 100%;
  max-height: 720px;
  object-fit: contain;
  width: 100%;
}

.founder-copy {
  max-width: 620px;
}

.founder-copy .section-eyebrow {
  margin-bottom: 18px;
}

.founder-link {
  color: var(--ink);
  display: inline-block;
  font-size: clamp(17px, 1.25vw, 20px);
  margin-top: 18px;
}

.our-story {
  display: grid;
  gap: clamp(44px, 6vw, 86px);
  margin: 0;
  max-width: none;
  padding: 0 0 clamp(92px, 10vw, 148px);
}

.story-copy {
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(0, 720px);
  justify-content: start;
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 var(--gutter);
}

.story-copy .section-eyebrow,
.story-copy h2 {
  grid-column: 1;
}

.story-copy .section-eyebrow {
  color: var(--ink);
  justify-self: start;
  text-align: left;
  width: auto;
}

.story-copy .section-eyebrow::after {
  margin-left: 0;
  margin-right: auto;
}

.story-copy h2 {
  max-width: 619px;
  width: 100%;
}

.story-copy p:not(.section-eyebrow) {
  grid-column: 1;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
  max-width: 619px;
  width: 100%;
}

.our-story > img {
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 1180px) {
  .section-heading,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .section-eyebrow,
  .section-heading h1,
  .section-heading h2,
  .section-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .story-copy {
    grid-template-columns: 1fr;
  }

  .story-copy .section-eyebrow,
  .story-copy h2,
  .story-copy p:not(.section-eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

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

  .contact-area {
    grid-template-columns: minmax(150px, .5fr) minmax(0, 1.5fr);
  }

  .portfolio-detail-body {
    grid-template-columns: minmax(150px, .5fr) minmax(0, 1.5fr);
  }

  .portfolio-detail-list {
    grid-column: 2;
  }

  .contact-details {
    grid-column: 2;
  }

  .primary-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 74px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    align-items: stretch;
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    left: 0;
    max-height: calc(100vh - 72px);
    opacity: 0;
    overflow-y: auto;
    padding: 18px var(--gutter) 26px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .nav-dropdown {
    border-bottom: 1px solid var(--line);
    display: block;
    margin: 0;
    padding: 0;
  }

  .nav-dropdown-toggle {
    border: 0;
    padding: 18px 0 8px;
    text-align: left;
    width: 100%;
  }

  .nav-dropdown-menu {
    border: 0;
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 0 0 14px 16px;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu::before {
    content: none;
  }

  .nav-dropdown-menu a {
    border-bottom: 0;
    padding: 9px 0;
  }

  .nav-button {
    border-color: var(--ink);
    justify-content: center;
    margin-top: 18px;
    padding: 12px 18px;
  }

  .hero {
    height: 86vh;
    min-height: 590px;
  }

  .hero-copy p {
    font-size: clamp(42px, 12vw, 68px);
    max-width: 620px;
  }

  .section-heading,
  .story-copy,
  .contact-area,
  .portfolio-detail-body,
  .founders {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child,
  .story-copy p:not(.section-eyebrow),
  .primary-button,
  .contact-details,
  .portfolio-detail-list {
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: minmax(220px, 42vw);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait-grid {
    grid-auto-rows: clamp(150px, 33vw, 260px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .portrait-grid img {
    grid-area: auto;
  }

  .portfolio-panel h2 {
    font-size: clamp(44px, 7vw, 56px);
  }

  .about-hero {
    margin-top: 60px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 114px;
  }

  .brand-mark {
    height: 30px;
    width: 40px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    padding-bottom: 34px;
  }

  .section,
  .section-packages,
  .gallery-section,
  .contact-area,
  .portfolio-detail-body,
  .about-statement,
  .founders,
  .about-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .portfolio-heading {
    padding-left: 18px;
    padding-right: 18px;
  }

  .story-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-grid,
  .package-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .portrait-grid {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .portrait-grid img {
    height: auto;
  }

  .portfolio-panel {
    height: clamp(430px, 72vh, 600px);
  }

  .portfolio-panel h2 {
    font-size: clamp(34px, 10vw, 48px);
    max-width: calc(100% - 36px);
    overflow-wrap: anywhere;
  }

  .portfolio-detail-hero {
    height: 560px;
  }

  .portfolio-detail-hero h1 {
    font-size: clamp(42px, 12vw, 68px);
    overflow-wrap: anywhere;
  }

  .portfolio-detail-contact {
    flex-direction: column;
  }

  .headshot-gallery {
    column-count: 1;
    max-width: 450px;
  }

  .gallery-wide,
  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .editorial-image {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-hero img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .founder-image {
    min-height: 430px;
  }

  .our-story > img {
    aspect-ratio: auto;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
