:root {
  --ink: #171817;
  --muted: #676963;
  --line: #d9dcd5;
  --soft: #f3f4f0;
  --white: #ffffff;
  --accent: #8a6744;
  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.button--small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible {
  background: transparent;
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand__logo {
  display: block;
  width: 238px;
  height: auto;
}

.brand__name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand__descriptor {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.custom-logo-link,
.custom-logo-link img {
  display: block;
  width: auto;
  max-height: 44px;
}

.site-nav,
.site-nav__list {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 34px;
}

.site-nav__list {
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list > li {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
}

.site-nav__list a {
  font-size: 13px;
  font-weight: 700;
}

.site-nav__list a[aria-current="page"] {
  color: var(--accent);
}

.menu-caret {
  display: inline-block;
  margin-left: 4px;
  color: var(--muted);
  font-size: 10px;
}

.site-nav__submenu,
.site-nav .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: -18px;
  z-index: 30;
  width: max-content;
  min-width: 220px;
  margin: 0;
  padding: 14px 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 24, 23, 0.09);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav__submenu a,
.site-nav .sub-menu a {
  display: block;
  padding: 9px 18px;
  color: var(--ink);
  white-space: nowrap;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible,
.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible {
  background: var(--soft);
}

.menu-item-has-children:hover > .site-nav__submenu,
.menu-item-has-children:focus-within > .site-nav__submenu,
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.screen-reader-text) {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 520px;
  height: calc(78svh - 76px);
  max-height: 600px;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  background: rgba(10, 12, 10, 0.28);
}

.hero__content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: var(--pad);
  width: min(600px, calc(100% - 40px));
  transform: translateY(-48%);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
}

.hero__summary {
  max-width: 520px;
  margin-bottom: 34px;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.intro,
.collections,
.featured-products,
.custom-process,
.archive-products,
.standard-page,
.product-detail {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 112px var(--pad);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 10vw;
}

.large-copy {
  margin-bottom: 30px;
  color: #343631;
  font-size: 22px;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
}

.capabilities div {
  display: flex;
  min-height: 112px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.capabilities div:last-child {
  border-right: 0;
}

.capabilities strong {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
}

.capabilities span {
  color: var(--muted);
  font-size: 13px;
}

.collections,
.custom-process {
  width: 100%;
  max-width: none;
  background: var(--soft);
}

.collections > *,
.custom-process > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading > p {
  width: min(390px, 40%);
  margin-bottom: 4px;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}

.collection-card img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 8px;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 16px;
}

.product-card__image {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.product-card__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.025);
}

.product-card__body {
  padding-top: 16px;
}

.product-card__body p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__body h3 {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.35;
}

.project-band {
  position: relative;
  display: grid;
  min-height: 720px;
  color: var(--white);
}

.project-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-band::after {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 11, 0.38);
  content: "";
}

.project-band__content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(560px, calc(100% - 40px));
  margin: 0 0 80px var(--pad);
}

.project-band__content .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.project-band__content h2 {
  margin-bottom: 24px;
  font-size: 62px;
}

.project-band__content p:not(.eyebrow) {
  margin-bottom: 30px;
  font-size: 18px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #cdd1c8;
  list-style: none;
}

.process-list li {
  min-height: 270px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid #cdd1c8;
}

.process-list li + li {
  padding-left: 28px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span,
.process-list p {
  color: var(--muted);
  font-size: 13px;
}

.process-list h3 {
  margin: 74px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.inquiry {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  padding: 112px var(--pad);
  background: #202320;
  color: var(--white);
}

.inquiry__intro,
.inquiry-form {
  width: 100%;
  max-width: 620px;
}

.inquiry__intro {
  margin-left: auto;
}

.inquiry .eyebrow {
  color: #aeb3aa;
}

.inquiry h2 {
  margin-bottom: 28px;
  font-size: 58px;
}

.inquiry__intro > p:last-child {
  max-width: 440px;
  color: #c7cbc3;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
}

.inquiry-form label,
.inquiry-form__message {
  display: block;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: 9px;
  color: #c7cbc3;
  font-size: 12px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #5d625a;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
}

.inquiry-form input {
  height: 46px;
}

.inquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--white);
}

.inquiry-form__message,
.inquiry-form .button,
.form-status {
  grid-column: 1 / -1;
}

.inquiry-form .button {
  justify-self: start;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #c7cbc3;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1.15fr;
  gap: 48px;
  padding: 64px var(--pad);
  border-top: 1px solid #333733;
  background: #202320;
  color: var(--white);
}

.site-footer__brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: #aeb3aa;
}

.site-footer__group,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #c7cbc3;
  font-size: 13px;
}

.site-footer__group strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer__brand sup {
  margin-left: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  vertical-align: super;
}

.home-cta {
  padding: 96px var(--pad);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.home-cta .eyebrow {
  color: #aeb3aa;
}

.home-cta h2 {
  margin-bottom: 34px;
  font-size: 58px;
}

.internal-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 380px;
  background: var(--soft);
}

.internal-hero__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 40px var(--pad);
}

.internal-hero h1 {
  max-width: 680px;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
}

.internal-hero__content > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
}

.internal-hero .breadcrumb {
  margin-bottom: 20px;
}

.internal-hero .eyebrow {
  margin-bottom: 14px;
}

.internal-hero__media,
.internal-hero__media img {
  width: 100%;
  height: 100%;
}

.internal-hero__media img {
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-nav {
  display: flex;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 22px var(--pad);
  gap: 28px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.category-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.category-nav a:hover,
.category-nav a[aria-current="page"] {
  color: var(--ink);
}

.catalog-intro,
.content-section,
.project-archive,
.blog-archive,
.contact-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px var(--pad);
}

.catalog-intro {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 10vw;
  padding-bottom: 54px;
}

.catalog-intro h2 {
  max-width: 720px;
}

.catalog-intro p {
  align-self: end;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 18px;
}

.catalog-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) 110px;
}

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}

.split-story + .split-story {
  margin-top: 110px;
}

.split-story img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-story__copy {
  max-width: 580px;
}

.split-story__copy h2 {
  margin-bottom: 26px;
}

.split-story__copy p {
  color: var(--muted);
  font-size: 18px;
}

.project-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 18px;
}

.project-card img,
.article-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.project-card__body,
.article-card__body {
  padding-top: 16px;
}

.project-card__body p,
.article-card__body p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card h2,
.article-card h2 {
  font-family: inherit;
  font-size: 22px;
  line-height: 1.3;
}

.contact-page {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-page__intro h1 {
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
}

.contact-page__intro p {
  color: var(--muted);
  font-size: 18px;
}

.contact-details {
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
}

.contact-details div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-size: 14px;
}

.contact-pending {
  color: var(--muted);
}

.contact-page .inquiry-form input,
.contact-page .inquiry-form textarea {
  border-color: var(--line);
  color: var(--ink);
}

.contact-page .inquiry-form label > span,
.contact-page .form-status {
  color: var(--muted);
}

.contact-page .inquiry-form input:focus,
.contact-page .inquiry-form textarea:focus {
  border-color: var(--ink);
}

.contact-page .inquiry-form .button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.contact-map {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 24px var(--pad) 88px;
}

.contact-map iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  filter: grayscale(0.35);
}

.project-detail {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 100px var(--pad);
}

.project-detail header {
  margin-bottom: 54px;
}

.project-detail h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
}

.project-detail__media {
  width: 100%;
  margin-bottom: 54px;
}

.project-detail__content {
  max-width: 780px;
}

.archive-hero {
  padding: 52px var(--pad) 38px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.archive-hero--centered {
  text-align: center;
}

.archive-hero--centered .breadcrumb {
  justify-content: center;
}

.archive-hero--centered h1 {
  margin-right: auto;
  margin-left: auto;
}

.archive-hero h1,
.standard-page h1,
.product-detail h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
}

.content-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  min-height: 62px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
}

.content-tabs a {
  display: flex;
  min-height: 62px;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.content-tabs a:hover,
.content-tabs a[aria-current="page"] {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.blog-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px var(--pad) 28px;
}

.blog-section-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-section-card > span {
  display: block;
  padding-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.2;
}

.blog-section-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-archive--latest {
  padding-top: 58px;
}

.article-card--video > a,
.article-card__media {
  position: relative;
  display: block;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 15px;
  transform: translate(-50%, -50%);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 7vw;
}

.product-gallery__stage {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.product-gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.product-gallery__thumbs button {
  aspect-ratio: 1;
  padding: 3px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.product-gallery__thumbs button[aria-pressed="true"] {
  border-color: var(--ink);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__summary {
  align-self: center;
}

.product-detail__summary h1 {
  margin-bottom: 24px;
  font-size: 50px;
}

.product-specs {
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.product-specs dt {
  color: var(--muted);
}

.product-specs dd {
  margin: 0;
}

.product-detail__content {
  grid-column: 1 / -1;
  max-width: 820px;
}

.standard-page header {
  margin-bottom: 70px;
}

.standard-page__content {
  max-width: 840px;
}

.post-list article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.post-list h2 {
  font-size: 34px;
}

@media (max-width: 980px) {
  h2 {
    font-size: 44px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 76px);
    align-items: stretch;
    padding: 28px var(--pad) 36px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    overflow-y: auto;
  }

  .site-nav--open {
    display: flex;
  }

  .site-nav__list {
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .site-nav__list > li {
    display: block;
    width: 100%;
    min-height: 0;
  }

  .site-nav__submenu,
  .site-nav .sub-menu {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 8px 0 0 18px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav__submenu a,
  .site-nav .sub-menu a {
    padding: 5px 0;
    color: var(--muted);
    font-size: 13px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(n + 3) {
    border-top: 1px solid #cdd1c8;
  }

  .inquiry {
    gap: 6vw;
  }

  .site-nav {
    gap: 24px;
  }

  .site-nav__list {
    gap: 20px;
  }

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

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

@media (max-width: 700px) {
  .brand__logo {
    width: 194px;
  }

  .site-header {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
    max-height: calc(100svh - 68px);
    min-height: calc(100svh - 68px);
    flex-direction: column;
  }

  .site-nav__list a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
  }

  .site-nav__submenu a,
  .site-nav .sub-menu a {
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
  }

  .site-nav .button {
    margin-top: 24px;
  }

  h2 {
    font-size: 37px;
  }

  .hero {
    min-height: 470px;
    height: calc(78svh - 68px);
    max-height: 530px;
  }

  .hero__image {
    object-position: 61% center;
  }

  .hero__scrim {
    background: rgba(8, 10, 8, 0.42);
  }

  .hero__content {
    top: auto;
    bottom: 48px;
    transform: none;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__summary {
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .intro,
  .collections,
  .featured-products,
  .custom-process,
  .archive-products,
  .standard-page,
  .product-detail {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .intro__grid,
  .inquiry,
  .product-detail,
  .internal-hero,
  .catalog-intro,
  .split-story,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .internal-hero {
    min-height: 0;
  }

  .internal-hero__content {
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .internal-hero h1 {
    font-size: 36px;
  }

  .internal-hero__media {
    min-height: 220px;
  }

  .catalog-intro,
  .content-section,
  .project-archive,
  .blog-archive,
  .contact-page {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-map {
    padding-bottom: 64px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  .catalog-intro {
    gap: 28px;
  }

  .split-story {
    gap: 38px;
  }

  .split-story + .split-story {
    margin-top: 76px;
  }

  .split-story img {
    min-height: 390px;
  }

  .split-story--reverse .split-story__copy {
    order: 2;
  }

  .project-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 46px;
  }

  .home-cta h2,
  .contact-page__intro h1,
  .project-detail h1 {
    font-size: 43px;
  }

  .intro__grid {
    gap: 36px;
  }

  .large-copy {
    font-size: 19px;
  }

  .capabilities {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
  }

  .capabilities div {
    min-height: 105px;
    border-bottom: 1px solid var(--line);
  }

  .capabilities div:nth-child(2) {
    padding-left: 16px;
    border-right: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .section-heading > p {
    width: 100%;
  }

  .collection-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 10px;
  }

  .collection-card,
  .product-card__body h3 {
    font-size: 14px;
  }

  .project-band {
    min-height: 650px;
  }

  .project-band__content {
    margin-bottom: 44px;
  }

  .project-band__content h2,
  .inquiry h2 {
    font-size: 44px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li {
    min-height: 210px;
    padding: 24px 0;
    border-top: 1px solid #cdd1c8;
    border-right: 0;
  }

  .process-list h3 {
    margin-top: 42px;
  }

  .inquiry {
    gap: 44px;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .inquiry-form__message,
  .inquiry-form .button,
  .form-status {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .archive-hero h1 {
    font-size: 38px;
  }

  .standard-page h1,
  .product-detail h1 {
    font-size: 42px;
  }
}
