/* ============================================================
   VARIABLES & RESET
   ============================================================ */

:root {
  --ink:    #111;
  --paper:  #fbfbf9;
  --muted:  #686868;
  --line:   #d8d8d4;
  --gap:    10px;
  --wrap:   1280px;
  --wide:   1680px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}


/* ============================================================
   LAYOUT HELPERS
   ============================================================ */

.wrap {
  width: min(calc(100% - 64px), var(--wrap));
  margin-inline: auto;
}

.wrap-wide {
  width: min(calc(100% - 32px), var(--wide));
  margin-inline: auto;
}


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

.site-header {
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - var(--wide)) / 2));
  background: rgba(251, 251, 249, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.brand {
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -1.2px;
  white-space: nowrap;
}

.brand span {
  font-weight: 400;
}

.site-header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-header nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .15em;
}

.site-header nav a:hover,
.site-header nav a.active {
  opacity: .48;
}

.menu {
  display: none;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .15em;
  padding: 12px 0;
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin: 0 0 24px;
}

h1, h2 {
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .96;
  margin: 0;
}

em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.arrow-link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .15em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  display: inline-block;
}


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

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  justify-content: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.hero-copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(46px, 5.7vw, 88px);
  white-space: nowrap;
}

.hero-copy .intro-copy {
  font-size: 17px;
  line-height: 1.55;
  max-width: 330px;
  margin: 30px 0 16px;
  color: #333;
}

.hero-photo {
  background: transparent;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 0;
  outline: 0;
}

.hero-photo img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border: 0;
  outline: 0;
}

@media (min-width: 721px) {
  .hero-photo img {
    transform: translateX(-30px) scale(1.3);
    transform-origin: center center;
  }
}


/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-head {
  padding-top: 118px;
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  align-items: end;
}

.section-head h2,
.block-copy h2,
.about h2 {
  font-size: clamp(48px, 6vw, 84px);
}

.section-head > p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 470px;
  margin: 0;
  color: #333;
}

.food-head {
  grid-template-columns: 1fr;
}


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

.photo-gallery {
  padding-bottom: 110px;
}

.photo-row {
  display: flex;
  gap: var(--gap);
  width: 100%;
  margin-bottom: var(--gap);
  align-items: stretch;
  overflow: hidden;
}

.photo-row figure {
  background: #eee;
  overflow: hidden;
  cursor: zoom-in;
  min-width: 0;
}

.photo-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #efefec;
}


/* ============================================================
   CLIENTS / LOGO STRIP
   ============================================================ */

.clients {
  padding-top: 36px;
  padding-bottom: 105px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients .kicker {
  margin-top: 42px;
}

.logo-carousel {
  display: flex;
  align-items: center;
}

.logo-strip {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 12px;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.logo-strip::-webkit-scrollbar {
  display: none;
}

.logo-strip figure {
  flex: 0 0 calc((100% - 36px) / 4);
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  margin: 0;
}

.logo-strip img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}

.logo-prev,
.logo-next {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  font-size: 36px;
  font-weight: 200;
  cursor: pointer;
  padding: 0 10px;
  line-height: 1;
  color: var(--ink);
  opacity: .35;
}

.logo-prev:hover,
.logo-next:hover {
  opacity: 1;
}


/* ============================================================
   PACKAGING
   ============================================================ */

.portfolio-block {
  padding-top: 110px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
}

.packaging-copy {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 7vw;
  align-items: end;
  margin: 0 auto 54px;
  max-width: 1280px;
}

.packaging-copy .kicker,
.packaging-copy h2,
.packaging-copy .arrow-link {
  grid-column: 1;
  grid-row: auto;
}

.packaging-copy .arrow-link {
  margin-top: 28px;
}

.packaging-copy > p:not(.kicker) {
  grid-column: 2;
  grid-row: 2;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  max-width: 520px;
  margin: 0 0 20px;
}

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

.range-card {
  cursor: zoom-in;
  min-width: 0;
}

.range-card img {
  width: 100%;
  aspect-ratio: 1.83 / 1;
  object-fit: contain;
  background: white;
}

.range-card figcaption {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-top: 10px;
  color: #555;
}


/* ============================================================
   FILM BLOCK
   ============================================================ */

.film-block {
  background: #111;
  color: white;
  padding: 108px 0;
}

.film-inner {
  display: grid;
  grid-template-columns: .38fr 1.62fr;
  gap: 7vw;
  align-items: center;
}

.on-dark > p:not(.kicker) {
  color: #d5d5d5;
}

.film-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.film-link .film-frame {
  margin: 0;
}

.film-frame {
  position: relative;
  cursor: zoom-in;
}

.film-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(0, 0, 0, .72);
  color: white;
  padding: 10px 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
}


/* ============================================================
   COMMERCIAL / ABOUT / CONTACT
   ============================================================ */

.commercial-grid {
  padding-bottom: 120px;
}

.section-head#commercial {
  grid-template-columns: 1fr;
}

.about {
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5vw;
  align-items: stretch;
}

.about-portrait-col {
  display: flex;
  align-items: stretch;
}

.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-copy {
  padding-top: 0;
  max-width: 560px;
}

.about-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.about-copy .about-lead {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: #111;
  margin-top: 0;
}

.contact {
  background: #111;
  color: white;
  padding: 108px 0;
}

.contact h2 {
  font-size: clamp(52px, 7vw, 96px);
}

.contact-link {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
  margin-top: 38px;
  margin-right: 32px;
  font-size: 15px;
}

.note {
  font-size: 10px;
  opacity: .5;
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: .12em;
}


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

.site-footer {
  min-height: 105px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 0 max(28px, calc((100vw - var(--wide)) / 2));
}

.site-footer > span {
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #666;
}

.site-footer > span:last-child {
  text-align: right;
}


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

.lightboxable {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 8, 8, .97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px 70px;
}

.lightbox.open {
  display: flex;
}

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 50px);
}

.lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 95px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #aaa;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-top: 12px;
  min-height: 26px;
}

.lightbox-caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox-count {
  white-space: nowrap;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(0, 0, 0, .12);
  color: white;
  cursor: pointer;
  font-weight: 200;
  line-height: 1;
}

.lightbox-close {
  top: 16px;
  right: 22px;
  font-size: 40px;
  padding: 8px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 54px;
  padding: 18px 16px;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-nav[hidden] {
  display: none;
}


/* ============================================================
   PACKAGING PAGE
   ============================================================ */

.package-hero {
  padding-top: 105px;
  padding-bottom: 95px;
}

.package-hero h1 {
  font-size: clamp(56px, 7.6vw, 112px);
}

.package-hero > p:last-child {
  font-size: 17px;
  line-height: 1.65;
  color: #333;
  max-width: 630px;
  margin: 34px 0 0;
}

.package-project {
  padding-top: 72px;
  padding-bottom: 92px;
  border-top: 1px solid var(--line);
}

.package-title {
  display: grid;
  grid-template-columns: 44px minmax(180px, 1fr) 1fr;
  gap: 26px;
  align-items: baseline;
  margin: 0 auto 30px;
  max-width: 1600px;
}

.package-title span {
  font-size: 10px;
  letter-spacing: .16em;
}

.package-title h2 {
  font-size: 42px;
}

.package-title p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #666;
  margin: 0;
}

.package-board {
  max-width: 1600px;
  margin: 0 auto;
  cursor: zoom-in;
}

.package-board img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: white;
}

.package-board figcaption {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #777;
  margin-top: 10px;
}


/* ============================================================
   VIDEO PAGE
   ============================================================ */

.video-page {
  padding-top: 88px;
  padding-bottom: 110px;
}

.video-title {
  padding-bottom: 52px;
}

.video-title h1 {
  font-size: clamp(56px, 7.6vw, 112px);
}

.reel-wrap {
  width: 100%;
  background: #000;
}

.reel-wrap video {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 130px);
  background: #000;
}


/* ============================================================
   MEDIA QUERIES — tablet (≤1000px)
   ============================================================ */

@media (max-width: 1000px) {

  .site-header nav {
    display: none;
  }

  .menu {
    display: block;
  }

  .site-header nav.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: var(--paper);
    padding: 28px 32px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }

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

  .hero-photo img {
    max-height: 68vh;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 6.8vw, 68px);
  }

  .film-inner {
    grid-template-columns: 1fr;
  }

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

  .film-frame {
    margin-top: 18px;
  }

  .packaging-copy {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .packaging-copy .kicker,
  .packaging-copy h2,
  .packaging-copy > p:not(.kicker),
  .packaging-copy .arrow-link {
    grid-column: 1;
    grid-row: auto;
  }

  .packaging-copy > p:not(.kicker) {
    margin: 28px 0 20px;
  }

  .logo-strip figure {
    flex: 0 0 calc((100% - 24px) / 3);
  }

}


/* ============================================================
   MEDIA QUERIES — mobile (≤720px)
   ============================================================ */

@media (max-width: 720px) {

  .wrap {
    width: min(calc(100% - 34px), var(--wrap));
  }

  .wrap-wide {
    width: calc(100% - 16px);
  }

  .site-header {
    padding: 0 17px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
    padding-bottom: 44px;
    gap: 30px;
    align-items: start;
  }

  .hero-copy {
    order: 1;
  }

  .hero-photo {
    order: 2;
    padding-top: 30px;
    justify-content: flex-start;
  }

  .hero-photo img {
    max-height: none;
    height: auto;
    transform: none;
  }

  .hero-copy h1 {
    font-size: 13vw;
    white-space: normal;
  }

  .hero-copy .intro-copy {
    font-size: 15px;
  }

  .hero-copy .arrow-link {
    margin-bottom: 40px;
  }

  .section-head {
    padding-top: 82px;
    padding-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-head h2,
  .block-copy h2,
  .about h2 {
    font-size: 13vw;
  }

  .photo-row {
    display: block;
    margin-bottom: 0;
  }

  .photo-row figure {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 8px;
  }

  .photo-row img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .clients {
    padding-bottom: 80px;
  }

  .logo-strip figure {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .logo-prev,
  .logo-next {
    display: none;
  }

  .portfolio-block {
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .range-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .range-card figcaption {
    margin-bottom: 4px;
  }

  .film-block {
    padding: 82px 0;
  }

  .film-inner {
    gap: 32px;
  }

  .about {
    grid-template-columns: 1fr;
    padding-top: 84px;
    padding-bottom: 84px;
    gap: 40px;
  }

  .contact {
    padding: 84px 0;
  }

  .contact h2 {
    font-size: 13.5vw;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .site-footer > span:last-child {
    text-align: left;
  }

  .lightbox {
    padding: 46px 12px 22px;
  }

  .lightbox-stage {
    max-width: 100%;
    max-height: 100%;
  }

  .lightbox-stage img {
    max-height: calc(100vh - 120px);
  }

  .lightbox-nav {
    font-size: 42px;
    padding: 14px 10px;
    background: rgba(0, 0, 0, .38);
  }

  .lightbox-prev {
    left: 0;
  }

  .lightbox-next {
    right: 0;
  }

  .lightbox-close {
    top: 4px;
    right: 7px;
  }

  .lightbox-meta {
    padding-inline: 8px;
  }

  .package-hero {
    padding-top: 75px;
    padding-bottom: 70px;
  }

  .package-title {
    grid-template-columns: 34px 1fr;
  }

  .package-title p {
    grid-column: 2;
  }

  .package-project {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .package-title h2 {
    font-size: 34px;
  }

}
