:root {
  --charcoal: #171817;
  --charcoal-soft: #252622;
  --ivory: #f4f0e7;
  --ivory-deep: #e8e0d3;
  --limestone: #d9cfbf;
  --brass: #b38a49;
  --brass-dark: #8c6b3b;
  --ink-muted: #6e6b64;
  --white: #fffdf8;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --gutter: clamp(1.5rem, 6vw, 7rem);
  --content: 90rem;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: Manrope, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--charcoal);
  border-radius: .5rem;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.25rem;
  color: var(--brass);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.display-title,
.page-title,
.section-title,
.service-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-weight: 500;
  letter-spacing: -.025em;
}

.section-title {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
  line-height: .98;
}

.body-large {
  max-width: 40rem;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.75;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 7.5rem;
  color: var(--charcoal);
}

.site-header--inverse {
  color: var(--white);
}

.page-home .site-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(20rem, 38vh, 30rem);
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, #0a0b0a 0%, rgba(10, 11, 10, .9) 18%, rgba(10, 11, 10, .72) 38%, rgba(10, 11, 10, .46) 58%, rgba(10, 11, 10, .22) 75%, rgba(10, 11, 10, .08) 88%, rgba(10, 11, 10, 0) 100%);
}

.page-home .site-nav {
  color: var(--white);
}

.page-home .brand-logo--dark {
  opacity: 0;
}

.page-home .brand-logo--light {
  opacity: 1;
}

.page-home .menu-toggle {
  color: var(--white);
}

.header-inner {
  position: relative;
  display: flex;
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  position: relative;
  z-index: 52;
  width: clamp(7rem, 9vw, 8.6rem);
  aspect-ratio: 1261 / 1000;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  transition: opacity 180ms ease;
}

.brand-logo--light {
  opacity: 0;
}

.site-header--inverse .brand-logo--dark,
.menu-open .brand-logo--dark {
  opacity: 0;
}

.site-header--inverse .brand-logo--light,
.menu-open .brand-logo--light {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 3rem);
}

.site-nav a {
  position: relative;
  padding: .55rem 0;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: -.01em;
  opacity: .68;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.site-nav a[aria-current="page"]::after {
  display: none;
}

.site-nav a[aria-current="page"] {
  font-weight: 600;
}

.nav-contact {
  min-height: 2.9rem;
  padding: .68rem 1.15rem !important;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
  opacity: 1 !important;
  transition: color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}

.nav-contact[aria-current="page"] {
  font-weight: 600 !important;
}

.nav-contact::after {
  display: none;
}

.nav-contact:hover {
  color: var(--charcoal);
  background: var(--ivory);
  transform: translateY(-2px);
}

.site-header:not(.site-header--inverse) .nav-contact:hover {
  color: var(--ivory);
  background: var(--charcoal);
}

.menu-toggle {
  position: relative;
  z-index: 52;
  display: none;
  min-width: 4.75rem;
  min-height: 3rem;
  padding: 0 1rem;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-open .menu-toggle {
  color: var(--ivory);
  border-color: rgba(244, 240, 231, .7);
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.home-hero__slides,
.home-hero__image,
.home-hero__veil {
  position: absolute;
  inset: 0;
}

.home-hero__slides {
  overflow: hidden;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: opacity 900ms var(--ease);
}

.home-hero__image.is-active {
  z-index: 1;
  opacity: 1;
  animation: hero-settle 5s linear both;
}

.home-hero__veil {
  background:
    linear-gradient(90deg, rgba(13, 14, 12, .72) 0%, rgba(13, 14, 12, .4) 38%, rgba(13, 14, 12, .04) 69%),
    linear-gradient(0deg, rgba(10, 11, 10, .4) 0%, transparent 36%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  min-height: 100svh;
  margin-inline: auto;
  padding-top: 9rem;
  padding-bottom: clamp(3rem, 9vh, 6rem);
  align-items: flex-end;
}

.home-hero__copy {
  width: min(49rem, 60%);
  transition: color 500ms var(--ease);
}

.home-hero .eyebrow {
  color: var(--ivory-deep);
  animation: reveal-up 650ms 180ms var(--ease) both;
  transition: color 500ms var(--ease);
}

.display-title {
  max-width: 15ch;
  font-size: clamp(4rem, 6vw, 6.8rem);
  line-height: .89;
  text-wrap: balance;
  animation: reveal-up 700ms 240ms var(--ease) both;
}

.hero-services {
  margin: 1.5rem 0 0;
  color: rgba(255, 253, 248, .86);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  letter-spacing: .015em;
  animation: reveal-up 700ms 310ms var(--ease) both;
  transition: color 500ms var(--ease);
}

.hero-actions {
  display: flex;
  margin-top: 2.15rem;
  gap: .85rem;
  flex-wrap: wrap;
  animation: reveal-up 700ms 380ms var(--ease) both;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  padding: .85rem 1.75rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.2;
  transition: color 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease);
}

.button::after {
  content: "↗";
  color: var(--brass);
  font-size: 1.08rem;
  transition: transform 200ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translate(3px, -2px);
}

.button--primary {
  color: var(--charcoal);
  background: var(--ivory);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .14);
}

.button--primary:hover {
  background: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .2);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
  background: rgba(20, 21, 19, .15);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(20, 21, 19, .42);
}

.home-hero--copy-dark .home-hero__veil {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .66) 0%, rgba(255, 253, 248, .3) 42%, rgba(255, 253, 248, .04) 72%),
    linear-gradient(0deg, rgba(255, 253, 248, .42) 0%, transparent 44%);
}

.home-hero--copy-dark .home-hero__copy,
.home-hero--copy-dark .eyebrow,
.home-hero--copy-dark .hero-services {
  color: var(--charcoal);
}

.home-hero--copy-dark .button--primary {
  color: var(--ivory);
  background: var(--charcoal);
}

.home-hero--copy-dark .button--primary:hover {
  background: #050505;
}

.home-hero--copy-dark .button--ghost {
  color: var(--charcoal);
  border-color: rgba(23, 24, 23, .72);
  background: rgba(255, 253, 248, .18);
}

.home-hero--copy-dark .button--ghost:hover {
  border-color: var(--charcoal);
  background: rgba(255, 253, 248, .52);
}

.button--dark {
  color: var(--ivory);
  background: var(--charcoal);
}

.button--dark:hover {
  background: var(--charcoal-soft);
  box-shadow: 0 12px 28px rgba(23, 24, 23, .15);
}

.home-slider {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .64);
  transition: color 500ms var(--ease);
}

.home-hero--copy-dark .home-slider {
  color: rgba(23, 24, 23, .9);
}

.home-slider__counter {
  min-width: 3.4rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.home-slider__bars {
  display: flex;
  gap: .45rem;
}

.home-slider__button {
  width: clamp(2.75rem, 4vw, 4rem);
  height: 1.25rem;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.home-slider__button > span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .32);
  transition: background 500ms var(--ease);
}

.home-hero--copy-dark .home-slider__button > span {
  background: rgba(23, 24, 23, .42);
}

.home-slider__button > span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: background 500ms var(--ease);
}

.home-hero--copy-dark .home-slider__button > span::after {
  background: var(--charcoal);
}

.home-slider__button.is-active > span::after {
  animation: hero-progress 5s linear forwards;
}

.home-slider.is-paused .home-slider__button.is-active > span::after {
  animation-play-state: paused;
}

.home-slider__toggle {
  min-width: 4.9rem;
  min-height: 2.25rem;
  padding: .35rem .7rem;
  color: inherit;
  background: rgba(10, 11, 10, .12);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color 500ms var(--ease), background 200ms var(--ease);
}

.home-slider__toggle:hover {
  background: rgba(10, 11, 10, .32);
}

.home-hero--copy-dark .home-slider__toggle {
  background: rgba(255, 253, 248, .28);
}

.home-hero--copy-dark .home-slider__toggle:hover {
  background: rgba(255, 253, 248, .58);
}

.page-main {
  min-height: 100svh;
  padding-top: 10rem;
}

.page-main--dark {
  color: var(--ivory);
  background: var(--charcoal);
}

.page-intro {
  display: grid;
  padding-top: clamp(3rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.page-title {
  max-width: 11ch;
  font-size: clamp(4rem, 8vw, 8.6rem);
  line-height: .86;
}

.page-intro__copy {
  margin: 0 0 .7rem;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.75;
}

.page-main--dark .page-intro__copy {
  color: rgba(244, 240, 231, .68);
}

.craft-list {
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.craft-row {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(23, 24, 23, .18);
  grid-template-columns: 5rem minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
}

.craft-index {
  align-self: start;
  color: var(--brass-dark);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
}

.craft-media {
  aspect-ratio: 4 / 3;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--limestone);
}

.craft-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.craft-row:hover .craft-media img {
  transform: scale(1.025);
}

.craft-media__cta {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .7rem .9rem;
  color: var(--charcoal);
  background: rgba(244, 240, 231, .94);
  border-radius: .65rem;
  box-shadow: 0 10px 30px rgba(23, 24, 23, .12);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background 180ms ease, transform 180ms ease;
}

.craft-media:hover .craft-media__cta,
.craft-media:focus-visible .craft-media__cta {
  background: var(--white);
  transform: translateY(-2px);
}

.service-title {
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  line-height: 1;
}

.craft-copy p {
  max-width: 30rem;
  margin: 1.2rem 0 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.craft-tags {
  display: flex;
  margin-top: 1.5rem;
  padding: 0;
  gap: .5rem;
  flex-wrap: wrap;
  list-style: none;
}

.craft-tags li {
  padding: .45rem .75rem;
  color: var(--brass-dark);
  border: 1px solid rgba(140, 107, 59, .35);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .03em;
}

.company-visual {
  position: relative;
  aspect-ratio: 16 / 7;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--limestone);
}

.company-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.company-visual__label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .45rem .7rem;
  color: var(--charcoal);
  background: rgba(244, 240, 231, .9);
  border-radius: .55rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.company-story {
  display: grid;
  padding-bottom: clamp(6rem, 10vw, 10rem);
  grid-template-columns: minmax(0, .75fr) minmax(20rem, 1.25fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.company-story__title {
  max-width: 9ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .96;
}

.company-story__copy p {
  max-width: 42rem;
  margin: 0 0 1.35rem;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.company-facts {
  display: grid;
  margin: 2.5rem 0 2.25rem;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(23, 24, 23, .18);
}

.company-facts li {
  padding: 1.25rem 1rem 1.25rem 0;
  border-bottom: 1px solid rgba(23, 24, 23, .18);
}

.company-facts strong,
.company-facts span {
  display: block;
}

.company-facts strong {
  margin-bottom: .35rem;
  color: var(--brass-dark);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.company-facts span {
  font-size: .92rem;
}

.project-toolbar {
  display: flex;
  padding: 1.1rem 0 2.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(244, 240, 231, .18);
}

.project-disclaimer {
  max-width: 38rem;
  margin: 0;
  color: rgba(244, 240, 231, .58);
  font-size: .88rem;
}

.filters {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-button {
  min-height: 2.75rem;
  padding: .55rem 1rem;
  color: rgba(244, 240, 231, .74);
  background: transparent;
  border: 1px solid rgba(244, 240, 231, .22);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .85rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--charcoal);
  background: var(--ivory);
  border-color: var(--ivory);
}

.project-grid {
  display: grid;
  padding-bottom: clamp(6rem, 10vw, 10rem);
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2.2vw, 2rem);
}

.project-card {
  display: block;
  grid-column: span 6;
}

.project-card:nth-child(4n + 1),
.project-card:nth-child(4n + 4) {
  grid-column: span 7;
}

.project-card:nth-child(4n + 2),
.project-card:nth-child(4n + 3) {
  grid-column: span 5;
}

.project-grid.is-filtered .project-card:not([hidden]) {
  grid-column: span 6;
}

.project-card[hidden] {
  display: none;
}

.project-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--charcoal-soft);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 650ms var(--ease);
}

.project-card:hover .project-image img {
  filter: saturate(.92);
  transform: scale(1.025);
}

.project-card:focus-visible {
  border-radius: var(--radius-md);
}

.project-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .45rem .7rem;
  color: var(--charcoal);
  background: rgba(244, 240, 231, .92);
  border-radius: .55rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.project-meta {
  display: flex;
  padding: 1.15rem .15rem 2rem;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.project-meta__text {
  min-width: 0;
}

.project-meta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.project-meta p {
  margin: .5rem 0 0;
  color: var(--brass);
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.project-link-label {
  flex: 0 0 auto;
  color: rgba(244, 240, 231, .6);
  font-size: .78rem;
  transition: color 180ms ease, transform 180ms ease;
}

.project-card:hover .project-link-label,
.project-card:focus-visible .project-link-label {
  color: var(--ivory);
  transform: translateX(.2rem);
}

.project-detail-main {
  background: var(--ivory);
}

.project-detail-hero {
  padding: 10rem 0 0;
  color: var(--ivory);
  background: var(--charcoal);
}

.project-back {
  display: inline-flex;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  align-items: center;
  gap: .65rem;
  color: rgba(244, 240, 231, .64);
  font-size: .8rem;
  transition: color 180ms ease, transform 180ms ease;
}

.project-back:hover {
  color: var(--ivory);
  transform: translateX(-.2rem);
}

.project-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, .75fr);
  align-items: end;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.project-detail-title {
  max-width: 10ch;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .86;
}

.project-detail-lead {
  max-width: 35rem;
  margin: 0 0 .5rem;
  color: rgba(244, 240, 231, .68);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.75;
}

.project-detail-cover {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  margin: clamp(3rem, 6vw, 6rem) 0 -6rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--charcoal-soft);
}

.project-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-overview {
  display: grid;
  padding-top: 13rem;
  padding-bottom: clamp(6rem, 10vw, 10rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, .8fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.project-detail-story .section-title {
  max-width: 11ch;
}

.project-detail-copy {
  max-width: 42rem;
  margin-top: 2rem;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}

.project-detail-copy p {
  margin: 0 0 1.25rem;
}

.project-detail-facts {
  align-self: end;
  margin: 0;
}

.project-detail-facts div {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(23, 24, 23, .18);
}

.project-detail-facts div:last-child {
  border-bottom: 1px solid rgba(23, 24, 23, .18);
}

.project-detail-facts dt {
  margin-bottom: .35rem;
  color: var(--brass-dark);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-detail-facts dd {
  margin: 0;
  font-size: .92rem;
}

.project-detail-features {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--ivory-deep);
}

.project-detail-features__inner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(22rem, 1.15fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.project-detail-features .section-title {
  max-width: 9ch;
}

.project-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: project-feature;
}

.project-feature-list li {
  display: grid;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(23, 24, 23, .18);
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.project-feature-list li:last-child {
  border-bottom: 1px solid rgba(23, 24, 23, .18);
}

.project-feature-list span {
  color: var(--brass-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.project-detail-gallery {
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.project-detail-gallery__heading {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  grid-template-columns: .8fr 1.2fr;
  align-items: end;
  gap: 2rem;
}

.project-detail-gallery__heading .eyebrow {
  align-self: start;
}

.project-detail-gallery__heading .section-title {
  max-width: 10ch;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2.2vw, 2rem);
}

.project-gallery-item {
  aspect-ratio: 4 / 3;
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--limestone);
}

.project-gallery-item:nth-child(3n + 1) {
  grid-column: span 7;
}

.project-gallery-item:nth-child(3n + 2) {
  grid-column: span 5;
}

.project-gallery-item:nth-child(3n) {
  aspect-ratio: 16 / 9;
  grid-column: 1 / -1;
}

.project-gallery-item:only-child,
.project-gallery-item:last-child:nth-child(3n + 1) {
  aspect-ratio: 16 / 9;
  grid-column: 1 / -1;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.project-gallery-item:hover img {
  transform: scale(1.018);
}

.project-pagination {
  display: grid;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(23, 24, 23, .18);
  border-bottom: 1px solid rgba(23, 24, 23, .18);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.project-pagination__link {
  display: grid;
  gap: .55rem;
}

.project-pagination__link > span {
  color: var(--brass-dark);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-pagination__link strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
}

.project-pagination__link--next {
  text-align: right;
}

.project-pagination__link:hover strong {
  color: var(--brass-dark);
}

.project-detail-cta {
  margin-top: clamp(5rem, 9vw, 8rem);
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: var(--ivory);
  background: var(--charcoal-soft);
}

.project-detail-cta__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.project-detail-cta h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .92;
}

.contact-layout {
  display: grid;
  min-height: calc(100svh - 10rem);
  grid-template-columns: minmax(0, .9fr) minmax(24rem, 1.1fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.contact-intro {
  position: sticky;
  top: 3rem;
}

.contact-intro .page-title {
  max-width: 8ch;
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.contact-lead {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.contact-details {
  display: grid;
  margin: 3rem 0 0;
  gap: 1.25rem;
}

.contact-detail {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 1rem;
}

.contact-detail dt {
  color: var(--brass-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-detail dd {
  margin: 0;
  font-size: 1rem;
}

.contact-detail a {
  text-decoration: underline;
  text-decoration-color: rgba(140, 107, 59, .4);
  text-underline-offset: .25em;
}

.contact-panel {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(62, 48, 27, .09);
}

.contact-panel h2 {
  margin: 0 0 2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.field {
  display: grid;
  gap: .45rem;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  min-height: 3.5rem;
  padding: .75rem 1rem;
}

.field textarea {
  min-height: 10rem;
  padding: 1rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(179, 138, 73, .12);
}

.form-footer {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--ink-muted);
  font-size: .78rem;
}

.form-status {
  margin-top: 1rem;
  color: var(--brass-dark);
}

.site-footer {
  color: var(--ivory);
  background: var(--charcoal);
}

.footer-inner {
  display: grid;
  padding-top: 4rem;
  padding-bottom: 2rem;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 13rem;
}

.footer-kicker {
  margin: 1.25rem 0 0;
  color: rgba(244, 240, 231, .6);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column h2 {
  margin: 0 0 1rem;
  color: var(--brass);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column a {
  display: block;
  margin: 0 0 .45rem;
  color: rgba(244, 240, 231, .74);
  font-size: .88rem;
}

.footer-bottom {
  display: flex;
  padding: 1.25rem 0 1.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(244, 240, 231, .42);
  border-top: 1px solid rgba(244, 240, 231, .12);
  font-size: .7rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from { transform: scale(1.02); }
  to { transform: scale(1); }
}

@keyframes hero-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(.75rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 56.25rem) {
  .site-header {
    height: 6.5rem;
  }

  .brand {
    width: 6.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    z-index: 51;
    inset: 0;
    display: flex;
    padding: 8rem 1.5rem 2rem;
    color: var(--ivory);
    background: rgba(23, 24, 23, .98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .2rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 240, 231, .14);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
  }

  .nav-contact {
    margin-top: 1rem;
    border-color: var(--ivory) !important;
    text-align: center;
  }

  .home-hero__image {
    object-position: 65% center;
  }

  .home-hero__copy {
    width: 100%;
  }

  .display-title {
    max-width: 9ch;
    font-size: clamp(3.3rem, 13vw, 5rem);
  }

  .home-slider {
    right: auto;
    bottom: 1.5rem;
    left: var(--gutter);
  }

  .home-hero__content {
    padding-bottom: 6.5rem;
  }

  .page-intro,
  .contact-layout,
  .company-story {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: clamp(3.7rem, 14vw, 6.5rem);
  }

  .craft-row {
    grid-template-columns: 3rem 1fr;
  }

  .craft-media {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .craft-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .project-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }

  .project-card,
  .project-card:nth-child(4n + 1),
  .project-card:nth-child(4n + 2),
  .project-card:nth-child(4n + 3),
  .project-card:nth-child(4n + 4) {
    grid-column: span 6;
  }

  .contact-intro {
    position: static;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }

  .company-visual {
    aspect-ratio: 4 / 3;
  }

  .project-detail-heading,
  .project-detail-overview,
  .project-detail-features__inner {
    grid-template-columns: 1fr;
  }

  .project-detail-heading {
    gap: 2rem;
  }

  .project-detail-cover {
    margin-bottom: -4rem;
  }

  .project-detail-overview {
    padding-top: 10rem;
  }

  .project-detail-gallery__heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 40rem) {
  :root {
    --gutter: 1.35rem;
  }

  .home-hero__content {
    padding-bottom: 6.5rem;
  }

  .home-hero__veil {
    background:
      linear-gradient(90deg, rgba(13, 14, 12, .66) 0%, rgba(13, 14, 12, .2) 82%),
      linear-gradient(0deg, rgba(10, 11, 10, .76) 0%, transparent 58%);
  }

  .home-hero--copy-dark .home-hero__veil {
    background:
      linear-gradient(90deg, rgba(255, 253, 248, .66) 0%, rgba(255, 253, 248, .24) 82%),
      linear-gradient(0deg, rgba(255, 253, 248, .68) 0%, transparent 62%);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 3.25rem;
  }

  .page-main {
    padding-top: 7rem;
  }

  .page-intro {
    padding-top: 2rem;
  }

  .craft-row {
    grid-template-columns: 1fr;
  }

  .craft-index,
  .craft-copy,
  .craft-media {
    grid-column: 1;
  }

  .craft-index {
    grid-row: auto;
  }

  .craft-copy {
    grid-row: auto;
  }

  .craft-media {
    grid-row: auto;
  }

  .project-card,
  .project-card:nth-child(4n + 1),
  .project-card:nth-child(4n + 2),
  .project-card:nth-child(4n + 3),
  .project-card:nth-child(4n + 4) {
    grid-column: 1 / -1;
  }

  .project-grid.is-filtered .project-card:not([hidden]) {
    grid-column: 1 / -1;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: .4rem;
  }

  .project-detail-hero {
    padding-top: 7.5rem;
  }

  .project-back {
    margin-bottom: 2.5rem;
  }

  .project-detail-title {
    font-size: clamp(3.5rem, 17vw, 5.5rem);
  }

  .project-detail-cover {
    aspect-ratio: 4 / 3;
    margin-top: 2.5rem;
    margin-bottom: -2.5rem;
  }

  .project-detail-overview {
    padding-top: 7rem;
  }

  .project-gallery-item,
  .project-gallery-item:nth-child(3n + 1),
  .project-gallery-item:nth-child(3n + 2),
  .project-gallery-item:nth-child(3n),
  .project-gallery-item:only-child,
  .project-gallery-item:last-child:nth-child(3n + 1) {
    aspect-ratio: 4 / 3;
    grid-column: 1 / -1;
  }

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

  .project-pagination__link--next {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(23, 24, 23, .14);
    text-align: left;
  }

  .project-detail-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

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

  .field--wide {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-intro {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
