:root {
  --ink: #0b0b0a;
  --paper: #f4f2ec;
  --muted: #aaa79f;
  --line: rgba(255,255,255,.18);
  --orange: #ff6a00;
  --green: #79c62d;
  --max: 1420px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { font: inherit; }
#work, #services, #craft, #contact { scroll-margin-top: 8rem; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--orange);
  color: #fff;
  padding: .75rem 1rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: -.035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-wordmark strong { color: var(--orange); letter-spacing: .08em; }
nav {
  justify-self: center;
  display: flex;
  gap: 2.2rem;
  margin-left: 0;
}
nav a, .header-cta {
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}
nav a { color: rgba(255,255,255,.78); }
nav a:hover, nav a:focus-visible { color: #fff; }
.header-cta {
  display: inline-flex;
  gap: .75rem;
  align-items: center;
  padding: 0 0 .35rem;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 2px solid var(--orange);
  transition: color .2s;
  white-space: nowrap;
}
.header-cta:hover, .header-cta:focus-visible { color: var(--orange); }

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.10) 32%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.58), transparent 68%);
}
.hero-watermark {
  position: absolute;
  z-index: 2;
  top: 7rem;
  right: -2rem;
  width: clamp(420px, 53vw, 850px);
  max-width: none;
  opacity: .09;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 4rem), var(--max));
  margin: 0 auto;
  padding: 11rem 0 4.5rem;
}
.eyebrow, .section-kicker {
  margin: 0 0 1.4rem;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: .75rem; color: #fff; }
.eyebrow span { width: 2.3rem; height: 3px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 1000px;
  margin-bottom: 2.4rem;
  font-size: clamp(4.2rem, 10vw, 9.5rem);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
h1 em {
  color: var(--orange);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  text-transform: none;
}
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 620px) auto;
  align-items: end;
  gap: 3rem;
}
.hero-bottom p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  max-width: 56ch;
}
.button {
  justify-self: end;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-width: 250px;
  padding: 1rem 1.1rem;
  background: var(--orange);
  color: #fff;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.button:hover, .button:focus-visible { background: #e95f00; transform: translateY(-2px); }
.hero-index {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  top: 50%;
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section { max-width: var(--max); margin: 0 auto; padding: 8rem 2rem; }
.intro {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: 4rem;
  border-bottom: 1px solid var(--line);
}
.intro h2, .section-heading h2, .craft h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.intro p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.section-heading h2 { margin: 0; }
.section-heading > p, .gallery-hint {
  max-width: 34ch;
  margin: 0 0 .6rem;
  color: var(--muted);
}
.gallery-hint { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}
.project {
  position: relative;
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #171715;
  color: #fff;
  cursor: zoom-in;
  text-align: left;
}
.project-wide { grid-column: span 8; }
.project-tall { grid-column: span 4; grid-row: span 2; }
.project-square { grid-column: span 4; }
.project img, .craft-images img, .more-grid img, .storage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.project:hover img, .project:focus-visible img, .craft-images button:hover img, .more-grid button:hover img, .storage-grid button:hover img, .storage-grid button:focus-visible img { transform: scale(1.035); }
.project-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 4.5rem 1.2rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
}
.project-overlay span {
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-overlay strong { font-size: 1.05rem; text-align: right; }
.project[data-collection] { cursor: pointer; }

.storage-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
  gap: 1rem;
}
.storage-grid button {
  grid-column: span 3;
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #171715;
}
.storage-grid .storage-wide { grid-column: span 6; }

.collection-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  overflow-y: auto;
  background: var(--ink);
  color: var(--paper);
}
.collection-dialog::backdrop { background: rgba(0,0,0,.82); }
.collection-panel { max-width: var(--max); margin: 0 auto; padding: 7rem 2rem 5rem; }
.collection-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.collection-header h2 { margin: 0; }
.collection-header > p { max-width: 38ch; margin: 0 0 .6rem; color: var(--muted); }
.collection-close {
  position: fixed;
  z-index: 4;
  top: 1rem;
  right: 1.5rem;
  padding: .55rem .8rem;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(11,11,10,.85);
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}
.collection-close span { margin-left: .4rem; font-size: 1.2rem; }

.services { border-top: 1px solid var(--line); }
.service-list { border-top: 1px solid var(--line); }
.service-list article {
  display: grid;
  grid-template-columns: 5rem 1.2fr 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.service-list span { color: var(--orange); font-size: .76rem; font-weight: 800; }
.service-list h3 { margin: 0; font-size: clamp(1.5rem, 2.5vw, 2.5rem); letter-spacing: -.035em; }
.service-list p { margin: 0; color: var(--muted); max-width: 44ch; }

.craft {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) 1.6fr;
  gap: 5rem;
  background: var(--paper);
  color: var(--ink);
  max-width: none;
  padding-left: max(2rem, calc((100vw - var(--max)) / 2 + 2rem));
  padding-right: max(2rem, calc((100vw - var(--max)) / 2 + 2rem));
}
.craft-copy { align-self: center; }
.craft-copy > p:not(.section-kicker) { color: #64625c; max-width: 42ch; font-size: 1.08rem; }
.process { display: flex; align-items: center; gap: .8rem; margin-top: 2.5rem; }
.process span { font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.process i { width: 1.8rem; height: 1px; background: rgba(0,0,0,.3); }
.craft-images {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
}
.craft-images button, .more-grid button {
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #ddd;
}
.craft-images button:first-child { grid-row: span 2; }
.more-work { padding-top: 7rem; }
.more-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.more-grid button { aspect-ratio: 3 / 4; }

.contact {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 5rem;
  border-top: 1px solid var(--line);
}
.contact h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.065em;
}
.contact-action { padding-bottom: .4rem; }
.contact-action > p { max-width: 34ch; color: var(--muted); margin-bottom: 1.6rem; font-size: 1.08rem; }
.contact-action .button { justify-self: start; width: 100%; max-width: 330px; }
.phone-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--paper);
  font-size: 1.2rem;
  font-weight: 700;
  text-underline-offset: .3rem;
  text-decoration-color: var(--orange);
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  border-top: 1px solid var(--line);
}
.footer-brand p, .copyright { margin: 0; color: var(--muted); font-size: .8rem; }
.footer-wordmark {
  margin-bottom: .8rem !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 900;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.footer-wordmark strong { color: var(--orange); letter-spacing: .08em; }
.footer-tagline { margin: 0; color: var(--orange); font-family: Georgia, serif; font-style: italic; font-size: 1.25rem; }
.copyright { justify-self: end; }

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 4rem 2rem 2rem;
  border: 0;
  background: rgba(5,5,4,.97);
  color: #fff;
}
.lightbox::backdrop { background: rgba(0,0,0,.8); }
.lightbox figure { margin: 0; width: 100%; height: 100%; display: grid; grid-template-rows: 1fr auto; gap: 1rem; }
.lightbox img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox figcaption { text-align: center; font-size: .9rem; letter-spacing: .06em; }
.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 1rem;
  right: 1.5rem;
  padding: .55rem .8rem;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}
.lightbox-close span { font-size: 1.2rem; margin-left: .4rem; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
  .brand-wordmark { font-size: .92rem; }
  nav {
    display: flex;
    gap: 1.25rem;
    margin-left: 0;
    padding-top: 0;
    border-top: 0;
  }
  nav a { padding: .25rem 0; font-size: .65rem; letter-spacing: .08em; text-align: center; }
  .header-cta { padding: 0 0 .3rem; font-size: .65rem; }
  .hero-copy { width: calc(100% - 2.5rem); padding-top: 10rem; padding-bottom: 2rem; }
  .hero-watermark { top: 7rem; right: -8rem; width: 650px; opacity: .07; }
  .hero-bottom { grid-template-columns: 1fr; gap: 1.5rem; }
  .button { justify-self: start; }
  .hero-index { display: none; }
  .section { padding: 5.5rem 1.25rem; }
  .intro { grid-template-columns: 1fr; gap: 1rem; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 330px; }
  .project, .project-wide, .project-tall, .project-square { grid-column: span 1; grid-row: span 1; }
  .project-wide { grid-column: span 2; }
  .storage-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 360px; }
  .storage-grid button { grid-column: span 1; }
  .storage-grid .storage-wide { grid-column: span 2; }
  .collection-panel { padding: 6rem 1.25rem 4rem; }
  .collection-header { grid-template-columns: 1fr; gap: 1rem; }
  .service-list article { grid-template-columns: 3rem 1fr; }
  .service-list p { grid-column: 2; }
  .craft { grid-template-columns: 1fr; gap: 3rem; padding-left: 1.25rem; padding-right: 1.25rem; }
  .more-grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .site-header { grid-template-columns: 1fr auto; gap: .65rem 1rem; padding: .8rem 1.25rem .7rem; }
  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: .65rem;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .hero-copy { padding-top: 12rem; }
  .hero-watermark { top: 8rem; }
  h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .hero { min-height: 760px; }
  .hero-media img { object-position: 57% center; }
  .header-cta span { display: none; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 1.2rem; }
  .project-grid { display: block; }
  .project { width: 100%; height: 430px; margin-bottom: 1rem; }
  .project-wide { height: 300px; }
  .gallery-hint { display: none; }
  .storage-grid { grid-auto-rows: 230px; gap: .7rem; }
  .collection-header { margin-bottom: 2rem; }
  .craft-images { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 180px; }
  .craft-images button:first-child { grid-column: span 2; grid-row: auto; }
  .service-list article { gap: 1rem; padding: 1.6rem 0; }
  .more-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  footer { grid-template-columns: 1fr; align-items: start; }
  .footer-tagline { order: -1; }
  .copyright { justify-self: start; }
  .lightbox { padding: 4rem .75rem 1rem; }
}

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