﻿:root {
  --ink: #111210;
  --paper: #f1eee6;
  --paper-dark: #d9d4c8;
  --sand: #c4a476;
  --red: #962a25;
  --line: rgba(17, 18, 16, 0.2);
}

* {
  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,
a,
button,
summary {
  cursor: default;
}

a,
button,
summary {
  cursor: pointer;
}

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

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

::selection {
  background: var(--red);
  color: white;
}

.skipLink {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: white;
  color: black;
  transform: translateY(-150%);
}

.skipLink:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  display: flex;
  min-height: 920px;
  height: 100svh;
  overflow: hidden;
  color: white;
  background: #30332d url("images/corpsfab-residence.jpg") center 48% / cover no-repeat;
}

.heroShade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.68) 0%, rgba(8, 9, 8, 0.08) 42%, rgba(8, 9, 8, 0.85) 100%),
    linear-gradient(90deg, rgba(8, 9, 8, 0.48), transparent 62%);
}

.siteHeader {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 95px;
  padding: 11px 3.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--ink);
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  line-height: 0.8;
}

.brandLogo {
  display: block;
  width: 136px;
  height: auto;
}

.brandName {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 25px;
  letter-spacing: 0.08em;
}

.brandTag {
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid currentColor;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.desktopNav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktopNav a,
.siteFooter nav a {
  position: relative;
}

.desktopNav a::after,
.siteFooter nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.desktopNav a:hover::after,
.siteFooter nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.headerCta {
  justify-self: end;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.headerCta:hover {
  background: white;
  color: black;
}

.mobileMenu {
  display: none;
}

.heroContent {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  align-self: flex-end;
  grid-template-columns: minmax(0, 2.25fr) minmax(290px, 0.75fr);
  align-items: end;
  gap: 5vw;
  padding: 0 3.5vw 155px;
}

.heroContent > .eyebrow {
  position: absolute;
  top: -52px;
  left: 3.5vw;
}

.eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 36px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
  content: "";
}

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

h1,
h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

h1 {
  max-width: 1000px;
  font-size: clamp(86px, 10.6vw, 190px);
}

h1 em,
h2 em {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-transform: none;
}

.heroLead {
  max-width: 385px;
  padding-bottom: 12px;
}

.heroLead > p {
  margin: 0 0 31px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.5;
}

.heroActions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

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

.buttonLight {
  background: white;
  color: var(--ink);
}

.buttonLight:hover {
  background: var(--sand);
}

.buttonDark {
  background: var(--ink);
  color: white;
}

.buttonDark:hover {
  background: var(--red);
}

.buttonOutline {
  border-color: rgba(255, 255, 255, 0.48);
  color: white;
}

.buttonOutline:hover {
  background: white;
  color: var(--ink);
}

.textLink {
  display: inline-flex;
  gap: 19px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightLink {
  color: white;
}

.heroRail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(9, 10, 9, 0.5);
  backdrop-filter: blur(12px);
}

.heroRail div {
  display: flex;
  min-height: 102px;
  align-items: center;
  gap: 19px;
  padding: 16px 3.5vw;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.heroRail div:last-child {
  border: 0;
}

.heroRail strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.heroRail span {
  max-width: 110px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.manifesto,
.collection,
.process {
  padding: 125px 5.5vw;
}

.sectionTopline,
.sectionHeading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.sideNote {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.manifesto h2,
.collection h2,
.process h2,
.projectCopy h2,
.contact h2 {
  font-size: clamp(68px, 9.5vw, 156px);
}

.manifesto h2 {
  margin: 100px 0 85px;
}

.manifestoCopy {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 11vw;
  padding-left: 15vw;
}

.manifestoCopy p {
  margin: 0;
  color: #34342f;
  line-height: 1.6;
}

.manifestoCopy .largeCopy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.3vw, 40px);
  line-height: 1.35;
}

.manifestoCopy > div {
  max-width: 395px;
}

.manifestoCopy .textLink {
  margin-top: 42px;
}

.collection {
  border-top: 1px solid var(--line);
}

.sectionHeading h2 {
  margin-top: 63px;
}

.sectionHeading > p {
  max-width: 390px;
  margin: 86px 6vw 0 0;
  color: #4c4c46;
  font-size: 16px;
  line-height: 1.65;
}

.collectionGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 94px;
}

.stoneCard {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
}

.stoneImageWrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-dark);
}

.stoneImageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.stoneCard:hover .stoneImageWrap img {
  transform: scale(1.045);
}

.cardNumber {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 18, 16, 0.82);
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.stoneMeta {
  display: grid;
  min-height: 100px;
  grid-template-columns: 1fr auto;
  align-content: start;
  align-items: end;
  gap: 7px 16px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.stoneMeta h3 {
  grid-column: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
}

.stoneMeta p {
  grid-column: 1;
  margin: 0;
  color: #66655e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stoneMeta a {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-size: 25px;
}

.collectionButton {
  width: fit-content;
  margin: 58px auto 0;
}

.projectFeature {
  display: grid;
  min-height: 870px;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--ink);
  color: white;
}

.projectImage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

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

.projectLabel {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(420px, 70%);
  flex-direction: column;
  gap: 7px;
  padding: 27px;
  background: var(--paper);
  color: var(--ink);
}

.projectLabel span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.projectLabel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.projectCopy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 9vw 5vw;
}

.projectCopy h2 {
  margin: 60px 0 55px;
  font-size: clamp(62px, 7vw, 118px);
}

.projectCopy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0 0 45px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
  line-height: 1.7;
}

.processHeading {
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.processGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.processStep {
  min-height: 320px;
  padding: 34px 28px 46px 0;
  border-right: 1px solid var(--line);
}

.processStep + .processStep {
  padding-left: 28px;
}

.processStep:last-child {
  border-right: 0;
}

.processStep > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.processStep h3 {
  margin: 105px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.processStep p {
  margin: 0;
  color: #65645e;
  font-size: 14px;
  line-height: 1.6;
}

.processMedia {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 28px;
  margin-top: 100px;
}

.processMedia figure {
  margin: 0;
}

.processMedia img {
  width: 100%;
  object-fit: cover;
}

.mediaPrimary img {
  aspect-ratio: 1.35;
}

.mediaSecondary img {
  aspect-ratio: 0.95;
}

.processMedia figcaption {
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof {
  position: relative;
  overflow: hidden;
  padding: 140px 12vw;
  background: #d6c9b3;
  text-align: center;
}

.quoteMark {
  position: absolute;
  top: -110px;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 430px;
  transform: translateX(-50%);
}

.proof blockquote {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 48px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.4vw, 59px);
  line-height: 1.25;
}

.attribution {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.attribution span {
  color: #686057;
}

.contact {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  background: var(--red);
  color: white;
}

.contactIntro {
  padding: 130px 6vw;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.contactIntro h2 {
  margin: 75px 0 55px;
  font-size: clamp(70px, 8vw, 135px);
}

.contactIntro h2 em {
  color: #e0c9a8;
}

.contactIntro > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 44px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.contactDetails {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.contactDetails > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 170px;
  padding: 28px 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.contactDetails > div:last-child {
  border-bottom: 0;
}

.contactDetails span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contactDetails a,
.contactDetails address,
.contactDetails p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 27px);
  font-style: normal;
  line-height: 1.35;
}

.contactDetails a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.siteFooter {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  align-items: end;
  gap: 35px;
  padding: 68px 4vw 40px;
  background: var(--ink);
  color: white;
}

.footerBrand {
  margin-bottom: 3px;
}

.siteFooter > p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.siteFooter nav {
  display: flex;
  gap: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.siteFooter .copyright {
  max-width: none;
  text-align: right;
}

@media (max-width: 1080px) {
  .desktopNav,
  .headerCta {
    display: none;
  }

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

  .mobileMenu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobileMenu summary {
    border: 1px solid rgba(255, 255, 255, 0.65);
    padding: 11px 14px;
    list-style: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobileMenu summary::-webkit-details-marker {
    display: none;
  }

  .mobileMenu nav {
    position: absolute;
    top: 47px;
    right: 0;
    display: flex;
    width: 220px;
    flex-direction: column;
    padding: 13px;
    background: var(--paper);
    color: var(--ink);
  }

  .mobileMenu nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .heroContent {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .heroLead {
    display: grid;
    max-width: 760px;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
  }

  .heroLead > p {
    margin: 0;
  }

  .manifestoCopy {
    padding-left: 6vw;
  }

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

  .projectCopy {
    min-height: 650px;
  }

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

  .processStep:nth-child(2) {
    border-right: 0;
  }

  .processStep:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .contactIntro {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

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

  .contactDetails > div {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .contactDetails > div:nth-child(even) {
    border-right: 0;
  }

  .contactDetails > div:nth-child(n + 3) {
    border-bottom: 0;
  }

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

  .siteFooter nav,
  .siteFooter .copyright {
    justify-self: end;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 760px;
    height: 100svh;
    background-position: 58% center;
  }

  .siteHeader {
    padding: 11px 22px;
  }

  .brandLogo {
    width: 112px;
  }

  .heroContent {
    gap: 22px;
    padding: 0 22px 132px;
  }

  .heroContent > .eyebrow {
    top: -40px;
    left: 22px;
  }

  .heroContent > .eyebrow::before {
    display: none;
  }

  h1 {
    font-size: clamp(62px, 19vw, 105px);
    line-height: 0.86;
  }

  .heroLead {
    display: block;
  }

  .heroLead > p {
    max-width: 520px;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .heroActions {
    flex-direction: row;
    align-items: center;
    gap: 17px;
  }

  .heroActions .textLink {
    display: none;
  }

  .heroRail div {
    min-height: 86px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding: 12px 20px;
  }

  .heroRail strong {
    font-size: 25px;
  }

  .heroRail span {
    font-size: 7px;
  }

  .manifesto,
  .collection,
  .process {
    padding: 80px 22px;
  }

  .sectionTopline {
    align-items: flex-end;
  }

  .sideNote {
    font-size: 8px;
  }

  .manifesto h2,
  .collection h2,
  .process h2,
  .projectCopy h2,
  .contact h2 {
    font-size: clamp(55px, 17vw, 96px);
  }

  .manifesto h2 {
    margin: 75px 0 60px;
  }

  .manifestoCopy {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }

  .sectionHeading {
    display: block;
  }

  .sectionHeading h2 {
    margin-top: 46px;
  }

  .sectionHeading > p {
    margin: 45px 0 0;
  }

  .collectionGrid {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 60px;
  }

  .stoneImageWrap {
    aspect-ratio: 4 / 3;
  }

  .projectFeature {
    min-height: auto;
  }

  .projectImage {
    min-height: 530px;
  }

  .projectCopy {
    min-height: 620px;
    padding: 80px 22px;
  }

  .projectCopy h2 {
    margin: 52px 0 42px;
  }

  .processHeading {
    padding-bottom: 55px;
  }

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

  .processStep,
  .processStep + .processStep {
    min-height: auto;
    padding: 30px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .processStep:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .processStep h3 {
    margin: 48px 0 13px;
  }

  .processMedia {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .mediaSecondary {
    width: 76%;
    margin-left: auto !important;
  }

  .proof {
    padding: 100px 22px;
  }

  .contactIntro {
    padding: 90px 22px;
  }

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

  .contactDetails > div,
  .contactDetails > div:nth-child(n + 3) {
    min-height: 150px;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .contactDetails > div:last-child {
    border-bottom: 0;
  }

  .siteFooter {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 58px 22px 35px;
  }

  .siteFooter nav,
  .siteFooter .copyright {
    justify-self: start;
    text-align: left;
  }

  .siteFooter nav {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Gallery */

.modalOpen {
  overflow: hidden;
}

.desktopNav a[aria-current="page"]::after,
.siteFooter nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.galleryHero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.galleryHero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background:
    radial-gradient(circle at 22% 25%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(145deg, #181916, #0d0e0c 72%);
  content: "";
}

.galleryHeroCopy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 60%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 125px 4.5vw 95px;
}

.galleryHeroCopy h1 {
  margin: 68px 0 55px;
  font-size: clamp(80px, 9.2vw, 166px);
}

.galleryHeroLead {
  display: grid;
  width: min(730px, 92%);
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 38px;
}

.galleryHeroLead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.55;
}

.galleryHeroMosaic {
  position: absolute;
  z-index: 1;
  top: 95px;
  right: 0;
  bottom: 72px;
  width: 44%;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.heroStone {
  position: absolute;
  overflow: hidden;
  border: 7px solid var(--ink);
  background: #7a766c;
}

.heroStone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.galleryHero:hover .heroStone img {
  transform: scale(1.035);
}

.heroStoneMain {
  inset: 0 0 0 25%;
}

.heroStoneTop {
  top: 0;
  right: 75%;
  bottom: 47%;
  left: 0;
}

.heroStoneBottom {
  top: 53%;
  right: 75%;
  bottom: 0;
  left: 0;
}

.galleryHeroIndex {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 72px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(12, 13, 11, 0.74);
  backdrop-filter: blur(10px);
}

.galleryHeroIndex span {
  height: 100%;
  padding: 29px 3.5vw 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.galleryCollection {
  padding: 130px 4.5vw 150px;
}

.galleryIntro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 9vw;
}

.galleryIntro h2,
.guideCopy h2,
.lightboxInfo h2 {
  margin: 65px 0 0;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(72px, 8.4vw, 145px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-transform: uppercase;
}

.galleryIntro h2 em,
.guideCopy h2 em {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-transform: none;
}

.galleryIntro > p {
  max-width: 460px;
  margin: 0 0 10px;
  color: #55544e;
  font-size: 16px;
  line-height: 1.7;
}

.galleryFilters {
  position: sticky;
  z-index: 15;
  top: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 105px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(241, 238, 230, 0.96);
  backdrop-filter: blur(12px);
}

.galleryFilters button {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #57564f;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.galleryFilters button:last-child {
  border-right: 0;
}

.galleryFilters button span {
  color: #96938a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

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

.galleryFilters button.active span {
  color: var(--sand);
}

.galleryResultCount {
  margin: 31px 0 15px;
  color: #747169;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 64px 18px;
  padding-top: 34px;
}

.galleryCard {
  min-width: 0;
}

.galleryCardButton {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

.galleryCardImage {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--paper-dark);
}

.galleryCardImage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(9, 10, 9, 0.72));
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.galleryCardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.galleryCardButton:hover .galleryCardImage img,
.galleryCardButton:focus-visible .galleryCardImage img {
  transform: scale(1.055);
}

.galleryCardButton:hover .galleryCardImage::after,
.galleryCardButton:focus-visible .galleryCardImage::after {
  opacity: 1;
}

.viewPrompt {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.viewPrompt b {
  font-size: 16px;
  font-weight: 400;
}

.galleryCardButton:hover .viewPrompt,
.galleryCardButton:focus-visible .viewPrompt {
  opacity: 1;
  transform: translateY(0);
}

.galleryCardMeta {
  display: flex;
  min-height: 82px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.galleryCardMeta > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.galleryCardMeta strong {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 400;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.galleryCardMeta small,
.galleryCardMeta em {
  color: #727068;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.galleryCardMeta em {
  flex: 0 0 auto;
  padding-top: 5px;
}

.stoneLightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 68px;
  background: rgba(7, 8, 7, 0.92);
  backdrop-filter: blur(14px);
}

.lightboxClose {
  position: absolute;
  z-index: 2;
  top: 23px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightboxClose span {
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 300;
}

.lightboxPanel {
  display: grid;
  width: min(1300px, 100%);
  max-height: calc(100svh - 136px);
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  overflow: auto;
  background: var(--paper);
}

.lightboxImage {
  min-height: 660px;
  background: #aaa59a;
}

.lightboxImage img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.lightboxInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 5vw;
}

.lightboxInfo h2 {
  margin: 45px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.6vw, 76px);
  line-height: 0.95;
  text-transform: none;
}

.lightboxInfo dl {
  margin: 0 0 35px;
  border-top: 1px solid var(--line);
}

.lightboxInfo dl > div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.lightboxInfo dt {
  color: #77746d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lightboxInfo dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.lightboxInfo > p:not(.eyebrow) {
  margin: 0 0 35px;
  color: #5f5d57;
  font-size: 14px;
  line-height: 1.65;
}

.lightboxInfo .button {
  width: max-content;
}

.galleryGuide {
  display: grid;
  min-height: 820px;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--red);
  color: white;
}

.guideVisual {
  min-height: 680px;
  overflow: hidden;
}

.guideVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.guideCopy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 7vw;
}

.guideCopy h2 {
  margin: 66px 0 54px;
  font-size: clamp(64px, 7vw, 120px);
}

.guideCopy h2 em {
  color: #e0c9a8;
}

.guideCopy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.guideActions {
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (max-width: 1080px) {
  .galleryHeroCopy {
    width: 68%;
  }

  .galleryHeroMosaic {
    width: 38%;
  }

  .galleryHeroCopy h1 {
    font-size: clamp(76px, 11vw, 125px);
  }

  .galleryHeroLead {
    display: block;
    width: min(560px, 90%);
  }

  .galleryHeroLead .button {
    margin-top: 26px;
  }

  .galleryGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lightboxPanel {
    grid-template-columns: 1fr 0.8fr;
  }

  .lightboxImage,
  .lightboxImage img {
    min-height: 580px;
  }

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

  .guideVisual {
    min-height: 650px;
  }
}

@media (max-width: 720px) {
  .galleryHero {
    min-height: 850px;
    height: 100svh;
  }

  .galleryHero::before {
    width: 100%;
  }

  .galleryHeroCopy {
    width: 100%;
    height: auto;
    padding: 138px 22px 0;
  }

  .galleryHeroCopy h1 {
    margin: 51px 0 25px;
    font-size: clamp(59px, 18vw, 100px);
  }

  .galleryHeroLead {
    width: 100%;
  }

  .galleryHeroLead p {
    max-width: 480px;
    font-size: 15px;
  }

  .galleryHeroLead .button {
    display: none;
  }

  .galleryHeroMosaic {
    top: auto;
    right: 0;
    bottom: 57px;
    left: 0;
    width: 100%;
    height: 42%;
    border-top: 7px solid var(--ink);
    border-left: 0;
  }

  .heroStone {
    border-width: 4px;
  }

  .heroStoneMain {
    inset: 0 0 0 38%;
  }

  .heroStoneTop {
    top: 0;
    right: 62%;
    bottom: 50%;
  }

  .heroStoneBottom {
    top: 50%;
    right: 62%;
  }

  .galleryHeroIndex {
    height: 57px;
  }

  .galleryHeroIndex span {
    overflow: hidden;
    padding: 23px 10px 0;
    font-size: 7px;
    text-align: center;
    text-overflow: ellipsis;
  }

  .galleryCollection {
    padding: 82px 22px 90px;
  }

  .galleryIntro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .galleryIntro h2,
  .guideCopy h2 {
    margin-top: 48px;
    font-size: clamp(55px, 16vw, 90px);
  }

  .galleryIntro > p {
    font-size: 15px;
  }

  .galleryFilters {
    top: 0;
    display: flex;
    margin: 62px -22px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .galleryFilters::-webkit-scrollbar {
    display: none;
  }

  .galleryFilters button {
    min-width: 112px;
    flex: 0 0 auto;
    padding: 0 14px;
  }

  .galleryResultCount {
    margin-top: 28px;
  }

  .galleryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 10px;
    padding-top: 20px;
  }

  .galleryCardImage,
  .galleryCard2 .galleryCardImage,
  .galleryCard4 .galleryCardImage,
  .galleryCard5 .galleryCardImage {
    aspect-ratio: 1;
  }

  .galleryCardMeta {
    display: block;
    min-height: 68px;
    padding-top: 12px;
  }

  .galleryCardMeta strong {
    font-size: 17px;
    white-space: normal;
  }

  .galleryCardMeta em {
    display: none;
  }

  .viewPrompt {
    display: none;
  }

  .stoneLightbox {
    align-items: end;
    padding: 54px 0 0;
  }

  .lightboxClose {
    top: 8px;
    right: 18px;
  }

  .lightboxPanel {
    width: 100%;
    max-height: calc(100svh - 54px);
    grid-template-columns: 1fr;
  }

  .lightboxImage,
  .lightboxImage img {
    min-height: 0;
    max-height: 48svh;
    aspect-ratio: 1;
  }

  .lightboxInfo {
    padding: 34px 22px 42px;
  }

  .lightboxInfo h2 {
    margin: 28px 0;
    font-size: 45px;
  }

  .galleryGuide {
    min-height: auto;
  }

  .guideVisual {
    min-height: 470px;
  }

  .guideCopy {
    padding: 84px 22px 92px;
  }

  .guideCopy h2 {
    margin: 48px 0 38px;
  }

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

/* Products */

.productsHero {
  position: relative;
  min-height: 920px;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.productsHero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(196, 164, 118, 0.15), transparent 31%),
    linear-gradient(135deg, #171815, #0b0c0a 65%);
  content: "";
}

.productsHeroCopy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 61%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 135px 4.5vw 88px;
}

.productsHeroCopy h1 {
  margin: 68px 0 48px;
  font-size: clamp(80px, 8.5vw, 154px);
}

.productsHeroCopy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.55;
}

.productsHeroTiles {
  position: absolute;
  z-index: 1;
  top: 95px;
  right: 0;
  bottom: 0;
  display: grid;
  width: 43%;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0 0 5px 5px;
  background: var(--ink);
}

.productsHeroTiles figure {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #77736a;
}

.productsHeroTiles figure:nth-child(2) {
  margin-top: 78px;
}

.productsHeroTiles figure:nth-child(3) {
  margin-top: 156px;
}

.productsHeroTiles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.productsHero:hover .productsHeroTiles img {
  transform: scale(1.04);
}

.productsHeroTiles figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 23px 14px 20px;
  background: linear-gradient(180deg, transparent, rgba(10, 11, 9, 0.82));
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.productsIntro {
  padding: 135px 5.5vw 125px;
}

.productsIntro h2,
.productFamilyCopy h2,
.comparisonHeading h2,
.productsCta h2 {
  margin: 78px 0 72px;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(72px, 8.7vw, 150px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-transform: uppercase;
}

.productsIntro h2 em,
.comparisonHeading h2 em,
.productsCta h2 em {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-transform: none;
}

.productsIntro > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  width: min(950px, 76%);
  margin-left: auto;
}

.productsIntro > div p {
  margin: 0;
  color: #56554f;
  font-size: 16px;
  line-height: 1.7;
}

.productFamilies {
  border-top: 1px solid var(--line);
}

.productFamily {
  display: grid;
  min-height: 820px;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.productFamily.reverse .productFamilyImage {
  grid-column: 2;
}

.productFamily.reverse .productFamilyCopy {
  grid-row: 1;
  grid-column: 1;
}

.productFamilyImage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #b3aea3;
}

.productFamilyImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.productFamily:hover .productFamilyImage img {
  transform: scale(1.035);
}

.productFamilyImage > span {
  position: absolute;
  top: 26px;
  left: 26px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 18, 16, 0.86);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.productFamilyCopy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 7vw;
}

.productFamilyCopy h2 {
  margin: 58px 0 16px;
  font-size: clamp(76px, 8.3vw, 145px);
}

.productSubtitle {
  margin: 0 0 40px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 31px);
}

.productDescription {
  max-width: 590px;
  margin: 0 0 38px;
  color: #55544e;
  font-size: 16px;
  line-height: 1.72;
}

.productFamilyCopy ul {
  width: 100%;
  max-width: 600px;
  margin: 0 0 38px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.productFamilyCopy li {
  position: relative;
  padding: 16px 20px 16px 29px;
  border-bottom: 1px solid var(--line);
  color: #4c4b46;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.productFamilyCopy li::before {
  position: absolute;
  top: 21px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
  content: "";
}

.productApplications {
  display: flex;
  max-width: 600px;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 42px;
  color: #64635c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.productApplications span {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.productActions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.profileComparison {
  padding: 130px 5.5vw;
  background: var(--ink);
  color: white;
}

.comparisonHeading h2 {
  margin-bottom: 90px;
}

.comparisonTable {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.comparisonRow {
  display: grid;
  min-height: 104px;
  grid-template-columns: 0.7fr 1.1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.comparisonRow > * {
  height: 100%;
  padding: 42px 25px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.comparisonRow > *:first-child {
  padding-left: 0;
}

.comparisonRow > *:last-child {
  border-right: 0;
}

.comparisonRow strong {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.comparisonRow span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.comparisonLabels {
  min-height: 62px;
}

.comparisonLabels span {
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.productDetails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 5.5vw;
}

.productDetails article {
  min-height: 350px;
  padding: 47px 30px 55px 0;
  border-right: 1px solid var(--line);
}

.productDetails article + article {
  padding-left: 30px;
}

.productDetails article:last-child {
  border-right: 0;
}

.productDetails span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.productDetails h3 {
  margin: 92px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.productDetails p {
  margin: 0;
  color: #66645e;
  font-size: 14px;
  line-height: 1.65;
}

.productsCta {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 9vw;
  padding: 125px 6vw;
  background: var(--red);
  color: white;
}

.productsCta h2 {
  margin-bottom: 0;
  font-size: clamp(66px, 7.6vw, 130px);
}

.productsCta h2 em {
  color: #e0c9a8;
}

.productsCta > div:last-child {
  padding-bottom: 12px;
}

.productsCta > div:last-child p {
  max-width: 500px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .productsHeroCopy {
    width: 66%;
  }

  .productsHeroTiles {
    width: 38%;
  }

  .productFamilyCopy {
    padding: 80px 5vw;
  }

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

  .comparisonRow {
    grid-template-columns: 0.7fr 1fr 1fr 1fr;
  }

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

  .productDetails article:nth-child(2) {
    border-right: 0;
  }

  .productDetails article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .productsCta > div:last-child {
    display: grid;
    max-width: 820px;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .productsHero {
    min-height: 880px;
    height: 100svh;
  }

  .productsHeroCopy {
    width: 100%;
    height: auto;
    padding: 138px 22px 0;
  }

  .productsHeroCopy h1 {
    margin: 51px 0 28px;
    font-size: clamp(59px, 18vw, 98px);
  }

  .productsHeroCopy > p:not(.eyebrow) {
    max-width: 480px;
    margin-bottom: 0;
    font-size: 15px;
  }

  .productsHeroCopy .button {
    display: none;
  }

  .productsHeroTiles {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 43%;
    padding: 5px 0 0;
  }

  .productsHeroTiles figure:nth-child(2),
  .productsHeroTiles figure:nth-child(3) {
    margin-top: 0;
  }

  .productsHeroTiles figcaption {
    padding: 22px 8px 14px;
    font-size: 7px;
    text-align: center;
  }

  .productsIntro {
    padding: 84px 22px;
  }

  .productsIntro h2,
  .productFamilyCopy h2,
  .comparisonHeading h2,
  .productsCta h2 {
    margin: 51px 0 46px;
    font-size: clamp(55px, 16vw, 91px);
  }

  .productsIntro > div {
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
    margin: 0;
  }

  .productFamily,
  .productFamily.reverse {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .productFamily.reverse .productFamilyImage,
  .productFamily.reverse .productFamilyCopy {
    grid-row: auto;
    grid-column: 1;
  }

  .productFamilyImage {
    min-height: 0;
    aspect-ratio: 1;
  }

  .productFamilyCopy {
    padding: 74px 22px 82px;
  }

  .productFamilyCopy h2 {
    margin-bottom: 11px;
  }

  .productSubtitle {
    margin-bottom: 31px;
    font-size: 22px;
  }

  .productDescription {
    font-size: 15px;
  }

  .productActions {
    gap: 23px;
  }

  .profileComparison {
    padding: 84px 22px;
  }

  .comparisonHeading h2 {
    margin-bottom: 60px;
  }

  .comparisonTable {
    border-top: 0;
  }

  .comparisonLabels {
    display: none;
  }

  .comparisonRow {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 29px 0;
  }

  .comparisonRow > * {
    height: auto;
    padding: 7px 0;
    border-right: 0;
  }

  .comparisonRow strong {
    margin-bottom: 9px;
  }

  .comparisonRow span::before {
    display: inline-block;
    width: 94px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .comparisonRow span:nth-child(2)::before {
    content: "Character";
  }

  .comparisonRow span:nth-child(3)::before {
    content: "Joint style";
  }

  .comparisonRow span:nth-child(4)::before {
    content: "Direction";
  }

  .productDetails {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }

  .productDetails article,
  .productDetails article + article {
    min-height: auto;
    padding: 35px 0 42px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .productDetails article:last-child {
    border-bottom: 0;
  }

  .productDetails h3 {
    margin: 46px 0 13px;
  }

  .productsCta {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 84px 22px 92px;
  }

  .productsCta h2 {
    margin-bottom: 0;
  }

  .productsCta > div:last-child {
    display: block;
  }
}

/* Product catalog and product detail */

.productCatalog {
  padding: 130px 4.5vw 150px;
  border-top: 1px solid var(--line);
  background: #e8e4da;
}

.catalogHeading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 9vw;
}

.catalogHeading h2 {
  margin: 65px 0 0;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(72px, 8.4vw, 145px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-transform: uppercase;
}

.catalogHeading h2 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
  text-transform: none;
}

.catalogHeading > p {
  max-width: 450px;
  margin: 0 0 9px;
  color: #55544e;
  font-size: 16px;
  line-height: 1.7;
}

.catalogToolbar {
  position: sticky;
  z-index: 15;
  top: 0;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(210px, 0.34fr) minmax(180px, 0.24fr);
  margin-top: 94px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(232, 228, 218, 0.96);
  backdrop-filter: blur(12px);
}

.catalogFilters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalogFilters button {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #54534d;
  font: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

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

.catalogFilters button span {
  color: #959188;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}

.catalogFilters button.active span {
  color: var(--sand);
}

.catalogSearch,
.catalogSort {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.catalogSort {
  border-right: 0;
}

.catalogSearch > span,
.catalogSort > span {
  color: #7b786f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.catalogSearch input,
.catalogSort select {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.catalogSearch input::placeholder {
  color: #8d8a82;
}

.catalogSort select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 5px) 52%,
    100% 52%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.catalogStatus {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
}

.catalogStatus p {
  margin: 0;
  color: #706e66;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.catalogStatus button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--red);
  font: inherit;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.catalogCard {
  min-width: 0;
}

.catalogCard > a {
  display: block;
}

.catalogCardImage {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #aaa69d;
}

.catalogCardImage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(9, 10, 9, 0.76));
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.catalogCardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.catalogCard a:hover .catalogCardImage img,
.catalogCard a:focus-visible .catalogCardImage img {
  transform: scale(1.055);
}

.catalogCard a:hover .catalogCardImage::after,
.catalogCard a:focus-visible .catalogCardImage::after {
  opacity: 1;
}

.catalogView {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 16px;
  left: 17px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.catalogView b {
  font-size: 16px;
  font-weight: 400;
}

.catalogCard a:hover .catalogView,
.catalogCard a:focus-visible .catalogView {
  opacity: 1;
  transform: translateY(0);
}

.catalogCardMeta {
  display: flex;
  min-height: 83px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
}

.catalogCardMeta > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.catalogCardMeta strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.55vw, 27px);
  font-weight: 400;
  line-height: 1.08;
}

.catalogCardMeta small,
.catalogCardMeta em {
  color: #6e6c64;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalogCardMeta em {
  flex: 0 0 auto;
  padding-top: 5px;
}

.catalogEmpty {
  display: grid;
  min-height: 430px;
  place-items: center;
  align-content: center;
  padding: 60px 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.catalogEmpty h3 {
  margin: 0 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.catalogEmpty p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #68665f;
  line-height: 1.6;
}

.productDetailHeader {
  position: relative;
  min-height: 96px;
  background: var(--ink);
  color: white;
}

.productDetailHeader .siteHeader {
  position: absolute;
}

.productDetail {
  padding: 35px 4.5vw 130px;
}

.productBreadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  color: #77746c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.productBreadcrumb a:hover {
  color: var(--red);
}

.productBreadcrumb span[aria-current="page"] {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productDetailGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 7vw;
  align-items: start;
}

.productDetailImage {
  position: sticky;
  top: 20px;
  overflow: hidden;
  background: #aaa69d;
}

.productDetailImage img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.productDetailImage > span {
  display: block;
  min-height: 48px;
  padding: 19px 17px 0;
  border-top: 1px solid var(--ink);
  color: #6f6c64;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.productDetailCopy {
  padding: 65px 0 40px;
}

.productDetailCopy h1 {
  margin: 58px 0 19px;
  color: var(--ink);
  font-size: clamp(72px, 7.3vw, 126px);
  line-height: 0.86;
}

.detailTones {
  margin: 0 0 42px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.detailDescription {
  max-width: 620px;
  margin: 0 0 40px;
  color: #55544f;
  font-size: 16px;
  line-height: 1.72;
}

.productSpecs {
  margin: 0 0 43px;
  border-top: 1px solid var(--line);
}

.productSpecs > div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.productSpecs dt {
  color: #77746c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.productSpecs dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.45;
}

.productDetailActions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.naturalStoneNote {
  margin-top: 55px;
  padding: 25px 28px;
  border-left: 3px solid var(--sand);
  background: #e3ded2;
}

.naturalStoneNote strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.naturalStoneNote p {
  margin: 0;
  color: #66635c;
  font-size: 13px;
  line-height: 1.6;
}

.productProjectGallery {
  padding: 120px 4.5vw 140px;
  background: #292b26;
  color: #f2efe7;
}

.projectGalleryHeading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 72px;
}

.projectGalleryHeading h2 {
  margin: 46px 0 0;
  color: #f2efe7;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(72px, 8.2vw, 138px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.projectGalleryHeading h2 em {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72em;
  font-weight: 400;
  text-transform: none;
}

.projectGalleryIntro {
  max-width: 500px;
  padding-bottom: 8px;
}

.projectGalleryIntro p {
  margin: 0 0 27px;
  color: #c6c4bc;
  font-size: 15px;
  line-height: 1.72;
}

.productProjectGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  grid-template-rows: repeat(2, minmax(225px, 26vw));
  grid-auto-rows: minmax(225px, 26vw);
  gap: 15px;
}

.productProjectCard {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #4a4b44;
}

.productProjectCard:first-child {
  grid-row: 1 / span 2;
}

.productProjectCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.productProjectCard:hover img {
  transform: scale(1.025);
}

.productProjectCard figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgb(25 26 23 / 85%));
  color: #f2efe7;
}

.productProjectCard figcaption span,
.productProjectPlaceholder > span {
  color: var(--sand);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.productProjectCard figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
}

.productProjectPlaceholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: 24px;
  border: 1px solid rgb(242 239 231 / 22%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 3%), transparent 60%),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 20px,
      rgb(255 255 255 / 2%) 20px,
      rgb(255 255 255 / 2%) 21px
    );
}

.productProjectPlaceholder strong,
.productProjectPlaceholder small {
  display: block;
}

.productProjectPlaceholder strong {
  margin-bottom: 9px;
  color: #f2efe7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.productProjectPlaceholder small {
  max-width: 230px;
  color: #aaa9a2;
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.relatedProducts {
  padding: 120px 4.5vw 140px;
  border-top: 1px solid var(--line);
  background: #e8e4da;
}

.relatedHeading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 68px;
}

.relatedHeading h2 {
  margin: 46px 0 0;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(60px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-transform: uppercase;
}

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

@media (max-width: 1080px) {
  .catalogToolbar {
    grid-template-columns: 1fr 0.42fr;
  }

  .catalogFilters {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
  }

  .catalogSearch,
  .catalogSort {
    min-height: 64px;
  }

  .productCatalogGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .productDetailGrid {
    grid-template-columns: 1fr 0.9fr;
    gap: 5vw;
  }

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

@media (max-width: 720px) {
  .productCatalog {
    padding: 84px 22px 94px;
  }

  .catalogHeading {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .catalogHeading h2 {
    margin-top: 48px;
    font-size: clamp(55px, 16vw, 90px);
  }

  .catalogHeading > p {
    font-size: 15px;
  }

  .catalogToolbar {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    margin: 61px -22px 0;
    border-bottom: 0;
  }

  .catalogFilters {
    display: flex;
    grid-column: 1;
    overflow-x: auto;
    border-bottom: 1px solid var(--ink);
    scrollbar-width: none;
  }

  .catalogFilters::-webkit-scrollbar {
    display: none;
  }

  .catalogFilters button {
    min-width: 116px;
    flex: 0 0 auto;
  }

  .catalogSearch,
  .catalogSort {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 22px;
    padding-left: 22px;
  }

  .catalogStatus {
    min-height: 65px;
  }

  .productCatalogGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 10px;
  }

  .catalogCardMeta {
    display: block;
    min-height: 68px;
    padding-top: 12px;
  }

  .catalogCardMeta strong {
    font-size: 17px;
  }

  .catalogCardMeta em,
  .catalogView {
    display: none;
  }

  .productDetailHeader {
    min-height: 82px;
  }

  .productDetail {
    padding: 20px 22px 80px;
  }

  .productBreadcrumb {
    min-height: 48px;
  }

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

  .productDetailImage {
    position: static;
  }

  .productDetailCopy {
    padding: 52px 0 0;
  }

  .productDetailCopy h1 {
    margin: 45px 0 17px;
    font-size: clamp(59px, 17vw, 91px);
  }

  .detailTones {
    margin-bottom: 32px;
    font-size: 20px;
  }

  .productSpecs > div {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .productDetailActions {
    gap: 23px;
  }

  .productProjectGallery {
    padding: 82px 22px 92px;
  }

  .projectGalleryHeading {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 52px;
  }

  .projectGalleryHeading h2 {
    margin-top: 40px;
    font-size: clamp(64px, 18vw, 96px);
  }

  .projectGalleryIntro {
    padding: 0;
  }

  .productProjectGrid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(430px, 115vw);
    grid-auto-rows: minmax(210px, 58vw);
    gap: 11px;
  }

  .productProjectCard:first-child {
    grid-row: auto;
  }

  .relatedProducts {
    padding: 82px 22px 92px;
  }

  .relatedHeading {
    display: block;
    margin-bottom: 52px;
  }

  .relatedHeading h2 {
    margin-bottom: 35px;
    font-size: 58px;
  }

  .relatedGrid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Original WordPress navigation and route-compatible catalog */
.desktopNav {
  gap: clamp(18px, 2vw, 32px);
}

.navProductMenu {
  position: relative;
}

.navProductDropdown {
  position: absolute;
  top: calc(100% + 21px);
  left: 50%;
  display: grid;
  width: 190px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(17, 18, 16, 0.97);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.navProductDropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 22px;
  content: "";
}

.navProductDropdown a {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
}

.navProductDropdown a:last-child {
  border-bottom: 0;
}

.navProductDropdown a::after {
  display: none;
}

.navProductDropdown a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.navProductMenu:hover .navProductDropdown,
.navProductMenu:focus-within .navProductDropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mobileMenu .mobileCategoryLink {
  padding-left: 27px;
  color: rgba(17, 18, 16, 0.68);
}

.categoryCatalogPage {
  background: var(--paper);
}

.categoryCatalogIntro {
  padding: 34px 3.5vw 85px;
  border-bottom: 1px solid var(--ink);
}

.categoryCatalogIntro .productBreadcrumb {
  margin-bottom: 78px;
}

.categoryCatalogIntro h1 {
  margin: 52px 0 34px;
  font-size: clamp(82px, 10vw, 160px);
}

.categoryCatalogIntro > p:last-child {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.55;
}

.categoryCatalog {
  padding: 0 3.5vw 120px;
}

.categoryCatalogToolbar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--ink);
}

.categoryCatalogToolbar > p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.categorySort {
  display: flex;
  align-items: center;
  gap: 16px;
}

.categorySort > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.categorySort select {
  min-height: 43px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  padding: 0 42px 0 13px;
  color: inherit;
  font: inherit;
}

.catalogPagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 78px;
}

.catalogPagination a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

/* Packaging and contact retain the original pages while using the redesign. */
.informationPage {
  background: var(--paper);
}

.informationHero {
  position: relative;
  display: grid;
  min-height: 600px;
  align-items: end;
  overflow: hidden;
  color: white;
}

.informationHero::before,
.informationHero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.informationHero::after {
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.67), rgba(8, 9, 8, 0.1) 45%, rgba(8, 9, 8, 0.82)),
    linear-gradient(90deg, rgba(8, 9, 8, 0.7), transparent 65%);
}

.packagingHero::before {
  background: #35362f url("images/stone-crates.jpg") center / cover no-repeat;
}

.contactHero::before {
  background: #302d27 url("images/stone-stock.jpg") center / cover no-repeat;
}

.informationHero > div {
  position: relative;
  z-index: 2;
  padding: 160px 3.5vw 70px;
}

.informationHero h1 {
  max-width: 1180px;
  margin: 50px 0 32px;
  font-size: clamp(79px, 9.8vw, 158px);
}

.informationHero > div > p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.packagingDetails {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 6vw;
  padding: 115px 3.5vw;
  border-bottom: 1px solid var(--ink);
}

.packagingDetailsHeading h2 {
  margin-top: 54px;
  font-size: clamp(65px, 7vw, 112px);
}

.packagingSpecGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.packagingSpecGrid article {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.packagingSpecGrid article > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.packagingSpecGrid h3 {
  margin: 67px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
}

.packagingSpecGrid p {
  margin: 0;
  line-height: 1.5;
}

.packagingGallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(320px, 31vw, 510px);
  gap: 12px;
  padding: 12px;
  background: var(--ink);
}

.packagingGallery figure {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #30322d;
}

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

.packagingNotice {
  padding: 105px 3.5vw;
  background: var(--ink);
  color: white;
}

.packagingNotice h2 {
  max-width: 860px;
  margin: 48px 0 29px;
  font-size: clamp(62px, 7.5vw, 120px);
}

.packagingNotice > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.contactPageGrid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 8vw;
  padding: 115px 3.5vw 125px;
}

.contactPageIntro h2 {
  margin: 52px 0 32px;
  font-size: clamp(64px, 7vw, 112px);
}

.contactPageIntro > p:last-of-type {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.6;
}

.contactPageIntro dl {
  margin: 52px 0 0;
}

.contactPageIntro dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.contactPageIntro dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contactPageIntro dd {
  margin: 0;
  line-height: 1.5;
}

.contactRequestForm {
  display: grid;
  gap: 21px;
  padding: 36px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.26);
}

.contactFieldPair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contactRequestForm label {
  display: grid;
  gap: 9px;
}

.contactRequestForm label > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contactRequestForm input,
.contactRequestForm select,
.contactRequestForm textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  padding: 14px 4px;
  color: inherit;
  font: inherit;
}

.contactRequestForm textarea {
  min-height: 165px;
  resize: vertical;
}

.contactRequestForm .button {
  width: max-content;
  margin-top: 8px;
}

.contactFormStatus {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .packagingDetails,
  .contactPageGrid {
    grid-template-columns: 1fr;
  }

  .packagingGallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(270px, 38vw, 410px);
  }

  .packagingGallery figure:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .categoryCatalogIntro {
    padding: 24px 22px 66px;
  }

  .categoryCatalogIntro .productBreadcrumb {
    margin-bottom: 56px;
  }

  .categoryCatalogIntro h1 {
    margin-top: 44px;
    font-size: clamp(64px, 20vw, 96px);
  }

  .categoryCatalog {
    padding: 0 22px 90px;
  }

  .categoryCatalogToolbar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 20px 0;
  }

  .categorySort {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .categorySort select {
    width: 100%;
  }

  .catalogPagination {
    flex-wrap: wrap;
    margin-top: 55px;
  }

  .informationHero {
    min-height: 550px;
  }

  .informationHero > div {
    padding: 145px 22px 58px;
  }

  .informationHero h1 {
    font-size: clamp(67px, 19vw, 98px);
  }

  .packagingDetails,
  .contactPageGrid {
    padding: 82px 22px 92px;
  }

  .packagingDetailsHeading h2,
  .contactPageIntro h2 {
    font-size: clamp(58px, 17vw, 87px);
  }

  .packagingSpecGrid,
  .contactFieldPair {
    grid-template-columns: 1fr;
  }

  .packagingSpecGrid article {
    min-height: 190px;
  }

  .packagingSpecGrid h3 {
    margin-top: 46px;
  }

  .packagingGallery {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(270px, 72vw, 390px);
  }

  .packagingGallery figure:first-child {
    grid-column: auto;
  }

  .packagingNotice {
    padding: 82px 22px 92px;
  }

  .packagingNotice h2 {
    font-size: 61px;
  }

  .contactRequestForm {
    padding: 24px 18px;
  }
}

