@font-face {
  font-family: "FuturaGG";
  src:
    url("fonts/FuturaStd-Light.woff2") format("woff2"),
    url("fonts/FuturaStd-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FuturaGG";
  src:
    url("fonts/FuturaStd-Medium.woff2") format("woff2"),
    url("fonts/FuturaStd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --white: #ffffff;
  --cream: #f7f4ee;
  --paper: #ffffff;
  --surface: #f4f4f2;
  --text: #141414;
  --muted: #64605a;
  --gold: #8b7a55;
  --success: #a9c7aa;
  --error: #d7a39e;
  --footer: #0a0a0a;
  --line: rgba(5, 5, 5, 0.11);
  --header-h: 116px;
  --pad: clamp(24px, 5.4vw, 92px);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --heading-line-height: 1.15;
  --copy-line-height: 1.75;
  --paragraph-gap: 0;
  --internal-page-text-gap: 22px;
  --internal-page-lede-gap: 16px;
  --internal-page-content-gap: clamp(60px, 10vw, 108px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

html.is-entering-page main,
html.is-entering-page .site-footer,
html.is-entering-page body:not(.home-page) .site-header {
  opacity: 0.12;
  filter: blur(6px);
}

html.is-leaving-page main,
html.is-leaving-page .site-footer,
html.is-leaving-page body:not(.home-page) .site-header {
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

main,
.site-footer,
.site-header {
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: "FuturaGG", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  transition:
    background-color 1s ease,
    color 0.8s ease;
}

p {
  margin: 0;
  line-height: var(--copy-line-height);
}

p + p {
  margin-top: var(--paragraph-gap);
}

body.contact-nocturne {
  background-color: var(--footer);
  color: var(--cream);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
strong {
  text-wrap: pretty;
}

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

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

/* Shared */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease);
}

.show-loader .page-loader {
  opacity: 1;
  visibility: visible;
}

.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
}

.has-seen-loader .page-loader {
  display: none;
}

.loader-progress {
  position: absolute;
  bottom: clamp(20px, 3vw, 52px);
  left: var(--pad);
  font-size: clamp(72px, 17vw, 260px);
  font-weight: 300;
  line-height: 0.75;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
}

.section-pad {
  padding: clamp(96px, 12vw, 180px) var(--pad);
}

.section-kicker,
.section-label,
.product-category,
.team-role,
.news-card time {
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: clamp(38px, 6vw, 76px);
  text-align: center;
}

.submit-btn {
  appearance: none;
  display: inline-grid;
  width: fit-content;
  min-height: 46px;
  min-width: 132px;
  place-items: center;
  padding: 13px 20px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  outline: 0;
  box-shadow: none;
}

.submit-btn:focus,
.submit-btn:focus-visible {
  outline: 0;
  box-shadow: none;
}

.submit-btn:hover {
  background: transparent;
  color: var(--black);
}

.submit-btn-secondary {
  background: transparent;
  color: var(--black);
}

.submit-btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.js-scroll-reveal .scroll-reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--scroll-reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.js-scroll-reveal .scroll-reveal.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: var(--header-h);
  padding: 18px var(--pad) 14px;
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(5, 5, 5, 0.07);
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  backdrop-filter: blur(18px);
}

.home-page .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  filter: blur(3px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    filter 0.65s var(--ease);
}

.home-page .site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  filter: blur(0);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: max-content;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-name {
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.brand-subtitle {
  color: var(--black);
  font-size: 9px;
  letter-spacing: clamp(1.3em, 1.05vw, 1.8em);
  opacity: 0.66;
  transform: translateX(3px);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2.4vw, 38px);
  width: 100%;
}

.main-nav a,
.nav-cart-btn {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(5, 5, 5, 0.74);
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 0.35s var(--ease);
}

.nav-cart-btn span {
  display: inline;
  margin-left: 6px;
  font-size: 9px;
  letter-spacing: 0;
}

.nav-cart-btn {
  padding: 9px 14px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.nav-cart-btn:hover,
.nav-cart-btn:focus-visible {
  background: transparent;
  color: var(--black);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover,
.nav-cart-btn:hover,
.main-nav a[aria-current="page"] {
  color: var(--black);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

/* Hero and home */
.hero {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-h) + 80px) var(--pad) 92px;
  color: var(--cream);
  text-align: center;
  isolation: isolate;
}

.home-page .hero {
  place-items: center;
  padding: 0 var(--pad);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  transform: translate3d(
    var(--hero-pointer-x, 0),
    calc(var(--hero-pointer-y, 0px) + var(--hero-scroll-y, 0px)),
    0
  );
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-media img {
  height: 112%;
  object-fit: cover;
}

.home-page .hero-media img {
  animation: hero-background-breathe 26s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  transform-origin: center;
  will-change: transform;
}

.home-page .hero.has-scroll-motion .hero-media {
  inset: -100px 0;
}

.home-page .hero.has-scroll-motion .hero-media img {
  height: 100%;
}

.home-page.hero-ready .hero-media img {
  animation:
    hero-background-breathe 26s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate,
    hero-background-focus 4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: absolute;
  right: var(--pad);
  bottom: clamp(48px, 6vh, 76px);
  left: var(--pad);
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-title-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-heading {
  display: grid;
  justify-items: stretch;
  width: fit-content;
  max-width: 100%;
}

.hero-heading-kicker {
  justify-self: end;
  margin: 0 0 12px;
  text-align: right;
}

.home-page .hero-heading-kicker,
.home-page .hero-title,
.home-page .hero-copy,
.home-page .hero-actions {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(
    var(--hero-pointer-x, 0),
    calc(var(--hero-pointer-y, 0px) + var(--hero-scroll-y, 0px) + 20px),
    0
  );
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.home-page.hero-ready .hero-heading-kicker,
.home-page.hero-ready .hero-copy,
.home-page.hero-ready .hero-actions {
  animation: hero-content-enter 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page.hero-ready .hero-heading-kicker {
  animation-delay: 0.05s;
}

.home-page.hero-ready .hero-title {
  animation:
    hero-content-enter 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both,
    hero-title-breathe 9s ease-in-out 1.9s infinite;
}

.home-page.hero-ready .hero-copy {
  animation-delay: 0.3s;
}

.home-page.hero-ready .hero-actions {
  animation-delay: 0.44s;
}

.hero .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hero-title {
  display: grid;
  width: fit-content;
  justify-self: center;
  justify-items: stretch;
  margin: 0 auto;
  max-width: min(100%, 16ch);
  text-align: center;
  font-size: clamp(44px, 7.2vw, 116px);
  font-weight: 300;
  line-height: var(--heading-line-height);
  letter-spacing: 0.015em;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.home-page .hero-title {
  font-size: clamp(54px, 9vw, 144px);
}

.hero-title span {
  display: inline-block;
}

.hero-title .hero-title-subtitle {
  display: flex;
  width: 96%;
  justify-content: space-between;
  justify-self: center;
  font-size: 0.3em;
  letter-spacing: 0;
}

.keep-line {
  white-space: nowrap;
}

.hero-copy,
.internal-page-lede {
  margin: 0 auto;
  max-width: 690px;
  color: rgba(5, 5, 5, 0.64);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: var(--copy-line-height);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

@keyframes hero-content-enter {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(
      var(--hero-pointer-x, 0),
      calc(var(--hero-pointer-y, 0px) + var(--hero-scroll-y, 0px) + 20px),
      0
    );
  }
  to {
    opacity: var(--hero-scroll-opacity, 1);
    filter: blur(0);
    transform: translate3d(
      var(--hero-pointer-x, 0),
      calc(var(--hero-pointer-y, 0px) + var(--hero-scroll-y, 0px)),
      0
    );
  }
}

@keyframes hero-background-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

@keyframes hero-background-focus {
  from { filter: blur(20px); }
  to { filter: blur(0); }
}

@keyframes hero-title-breathe {
  0%, 100% { letter-spacing: 0.015em; }
  50% { letter-spacing: calc(0.015em + 1px); }
}

.hero-actions a,
.editorial-card a {
  position: relative;
  color: currentColor;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-actions a::after,
.editorial-card a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.intro-section,
.historical-gallery,
.gallery-archive,
.collections-overview,
.history-section,
.contact-section,
.news-list,
.team-section,
.shop-layout,
.services-intro,
.services-list,
.history-story,
.history-family,
.editorial-section {
  background: var(--paper);
}

.intro-section {
  text-align: center;
}

.intro-heading,
.history-copy,
.contact-copy {
  max-width: 1080px;
}

.intro-heading {
  margin: 22px auto 0;
}

.intro-heading h2,
.historical-gallery h2,
.archive-title,
.history-copy h2,
.contact-copy h2,
.internal-page-title,
.history-family-copy h2,
.services-intro h2,
.services-contact h2 {
  margin: 0;
  font-weight: 300;
  line-height: var(--heading-line-height);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.intro-heading h2,
.historical-gallery h2,
.archive-title,
.history-copy h2,
.contact-copy h2 {
  font-size: clamp(42px, 7vw, 104px);
}

.gallery-archive .section-top {
  align-items: flex-start;
  text-align: left;
}

.section-intro {
  max-width: 620px;
  margin: -10px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 5vw, 70px);
}

.since {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
}

.text-columns,
.history-text {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}

.text-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: clamp(56px, 8vw, 104px) auto 0;
  text-align: left;
}

.intro-section .text-columns {
  position: relative;
  max-width: 1240px;
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)),
    image-set(
      url("assets/home/home_mountain.avif") type("image/avif"),
      url("assets/home/home_mountain.webp") type("image/webp")
    );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-columns p,
.history-text p,
.contact-summary p,
.news-card p,
.product-copy > p:not(.product-category),
.services-intro-copy p,
.service-item p,
.history-story-text p,
.history-family-copy p,
.milestone p,
.feedback-card p:not(.section-kicker) {
  margin: 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: var(--copy-line-height);
}

.intro-section .text-columns p {
  color: var(--black);
}

/* Editorial selection */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  background: transparent;
}

.editorial-card {
  position: relative;
  display: grid;
  min-height: clamp(420px, 48vw, 760px);
  place-items: end center;
  overflow: hidden;
  padding: clamp(26px, 4vw, 56px);
  color: var(--white);
  text-align: center;
  isolation: isolate;
}

.editorial-card-large,
.archive-item-wide,
.collection-panel-large {
  grid-column: span 2;
}

.editorial-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.56));
}

.editorial-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.editorial-card-collections {
  background: var(--white);
}

.editorial-card-collections img {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 112%;
  height: auto;
  object-fit: unset;
  transform: translate(-50%, -50%);
}

.editorial-card:hover img {
  transform: scale(1.035);
}

.editorial-card-collections:hover img {
  transform: translate(-50%, -50%);
}

.editorial-card div {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.editorial-card h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 54px);
  font-weight: 300;
  line-height: var(--heading-line-height);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Media grids */
.news-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.home-page .news-section {
  border-block: 0;
}

.featured-news {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.featured-news figure {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.featured-news-copy {
  display: grid;
  gap: 22px;
}

.featured-news-copy time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.featured-news-copy h3 {
  margin: 0;
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 300;
  line-height: var(--heading-line-height);
  text-transform: uppercase;
}

.featured-news-copy p {
  margin: 0;
  max-width: 620px;
  color: rgba(5, 5, 5, 0.66);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: var(--copy-line-height);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.gallery-item {
  min-height: 430px;
  margin: 0;
}

.gallery-item-large {
  grid-row: span 2;
  min-height: 820px;
}

.gallery-item,
.news-card figure,
.product-media,
.history-page-media,
.services-hero-media,
.services-list-media,
.contact-team-media,
.history-family-media,
.history-media,
.gallery-hero-media {
  overflow: hidden;
  background: var(--surface);
}

.image-format-stack img,
.featured-news img,
.gallery-item img,
.history-media img,
.news-card img,
.product-media img,
.history-page-media img,
.services-hero-media img,
.services-list-media img,
.contact-team-media img,
.history-family-media img,
.archive-item img,
.collection-panel-media img {
  height: 100%;
  object-fit: cover;
}

.image-format-stack {
  display: block;
  height: 100%;
}

.news-card:hover img,
.product-card:hover .product-media img {
  transform: scale(1.035);
}

.news-card img,
.product-media img {
  transition: transform 0.7s var(--ease);
}

/* Home history, final, contact */
.history-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.history-copy h2,
.contact-copy h2 {
  margin-top: 26px;
}

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

.home-page .contact-section {
  min-height: 72svh;
  align-content: center;
  background: transparent;
  transition: color 0.8s ease;
}

body.contact-nocturne .contact-section {
  color: var(--cream);
}

body.contact-nocturne .contact-section .section-kicker,
body.contact-nocturne .contact-summary p {
  color: rgba(247, 244, 238, 0.68);
}

body.contact-nocturne .contact-section .submit-btn {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

body.contact-nocturne .contact-section .submit-btn:hover {
  background: transparent;
  color: var(--cream);
}

.history-text {
  max-width: 620px;
  margin-top: clamp(34px, 5vw, 62px);
}

.history-media {
  margin: 0;
}

.history-media img {
  height: min(72vh, 760px);
}

.team-card a {
  color: var(--muted);
  transition: color 0.35s var(--ease);
}

.team-card a:hover {
  color: var(--gold);
}

.contact-summary {
  display: grid;
  gap: 24px;
  max-width: 520px;
  margin-top: clamp(34px, 5vw, 62px);
}

.contact-summary .submit-btn {
  justify-self: start;
}

/* Internal heroes */
.internal-page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--header-h) + 78px) var(--pad) 0;
  border-bottom: 0;
  background: var(--paper);
  text-align: center;
}

.internal-page-title {
  width: min(1120px, 100%);
  max-width: 100%;
  font-size: clamp(42px, 6.1vw, 112px);
  text-align: center;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.services-title span {
  white-space: nowrap;
}

.internal-page-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1120px, 100%);
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.internal-page-heading > .section-kicker,
.internal-page-heading > .internal-page-title,
.internal-page-heading > .internal-page-lede {
  margin: 0;
}

.internal-page-heading > .section-kicker + .internal-page-title {
  margin-top: var(--internal-page-text-gap);
}

.internal-page-heading > .internal-page-title + .internal-page-lede {
  margin-top: var(--internal-page-lede-gap);
}

.internal-page-media {
  width: min(980px, 100%);
  margin: var(--internal-page-content-gap) auto 0;
}

.internal-page-hero + .section-pad {
  padding-top: var(--internal-page-content-gap);
}

.contact-team-media {
  margin: 0;
}

.gallery-hero-media img {
  height: min(76vh, 820px);
  object-fit: cover;
}

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feedback-card {
  display: grid;
  grid-template-columns: clamp(150px, 18vw, 230px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 210px;
  border-left: 1px solid var(--line);
  background: var(--white);
}

.feedback-card img {
  width: 100%;
  height: calc(100% - clamp(20px, 2.5vw, 36px));
  margin-bottom: clamp(20px, 2.5vw, 36px);
  object-fit: cover;
}

.feedback-card > div {
  display: grid;
  align-content: center;
  gap: 0;
  padding: clamp(22px, 3vw, 40px);
}

.feedback-card .section-kicker + h2 {
  margin-top: 12px;
}

.feedback-card h2 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 300;
  line-height: var(--heading-line-height);
}

.feedback-card h2 + p {
  margin-top: 18px;
}

.feedback-wanted {
  display: grid;
  justify-items: start;
  gap: clamp(24px, 4vw, 46px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  text-align: left;
}

.feedback-wanted .contact-copy {
  width: 100%;
}

.feedback-wanted h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 82px);
  font-weight: 300;
  line-height: var(--heading-line-height);
  text-transform: uppercase;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(16px, 2vw, 28px);
}

.archive-item {
  position: relative;
  min-height: clamp(280px, 32vw, 520px);
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}

.archive-item:focus-visible,
.news-card:focus-visible {
  outline: 1px solid var(--black);
  outline-offset: 6px;
}

.archive-item-tall {
  grid-row: span 2;
  min-height: clamp(540px, 66vw, 900px);
}

.archive-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.62), transparent);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
}

.collection-panel {
  --collection-copy-overlap: clamp(70px, 7vw, 120px);
  display: grid;
  grid-template-rows: minmax(320px, 38vw) auto;
  min-height: 100%;
  background: transparent;
}

.collection-panel-media {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.collection-panel div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-self: start;
  margin-top: calc(-1 * var(--collection-copy-overlap));
  margin-bottom: var(--collection-copy-overlap);
  padding: clamp(24px, 3vw, 42px);
  isolation: isolate;
}

.collection-panel div::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--surface);
  opacity: 0.7;
}

.collection-panel h2 {
  margin: 0;
  font-size: clamp(22px, 2.25vw, 36px);
  font-weight: 300;
  line-height: var(--heading-line-height);
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.collection-panel p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.collection-panel a {
  width: max-content;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.history-family-media img,
.services-list-media img {
  height: clamp(300px, 42vw, 620px);
}

.team-section {
  padding: 0 0 clamp(86px, 10vw, 150px);
}

.contact-team-media,
.history-family-media {
  background: transparent;
}

.team-section .contact-team-media {
  width: 100%;
}

.team-section .contact-team-media .image-format-stack,
.team-section .contact-team-media img {
  width: 100%;
  height: auto;
}

.contact-team-media img,
.history-family-media img {
  object-fit: contain;
}

.history-page-media img,
.services-hero-media img {
  height: min(72vh, 780px);
}

/* Cards and product layouts */
.team-grid,
.news-grid,
.shop-grid {
  --cols: 3;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 28px;
}

.shop-grid {
  --cols: 4;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.shop-grid.is-filtering {
  opacity: 0;
}

.team-grid {
  --cols: 4;
}

.team-section .team-grid {
  padding: clamp(70px, 8vw, 112px) var(--pad) 0;
  gap: clamp(28px, 5vw, 90px);
}

.news-card,
.product-card,
.service-item {
  border: 1px solid var(--line);
  background: var(--white);
}

.news-card-copy,
.product-copy,
.service-item {
  padding: clamp(26px, 3.4vw, 50px);
}

.team-card {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.team-card-portrait {
  display: none;
}

.team-card-copy {
  display: grid;
  align-content: start;
  row-gap: 14px;
}

.team-card h2,
.news-card h2,
.product-copy h2,
.milestone h2,
.service-item h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 300;
  line-height: var(--heading-line-height);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.team-card h2 {
  font-size: clamp(19px, 1.8vw, 28px);
  text-transform: none;
}

.team-role {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
}

.team-phone {
  position: relative;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.team-phone::before {
  content: "•";
  margin-right: 18px;
  color: var(--black);
}

.team-phone span {
  margin-right: 8px;
}

.services-contact {
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--cream);
  padding-bottom: clamp(28px, 4vw, 64px);
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(42px, 6vw, 82px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--black);
  color: var(--cream);
}

.contact-form-heading {
  position: static;
  display: grid;
  gap: 24px;
}

.contact-form-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 300;
  line-height: var(--heading-line-height);
}

.contact-form-intro {
  max-width: 440px;
  margin: 0;
  color: rgba(247, 244, 238, 0.64);
  font-size: 15px;
}

.contact-form,
.contact-form-grid {
  display: grid;
  gap: 30px;
}

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

.form-field {
  display: grid;
  gap: 10px;
}

.form-field-message {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(247, 244, 238, 0.68);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.form-field label span {
  opacity: 0.62;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font: inherit;
  transition: border-color 0.4s var(--ease);
}

.form-field select,
.form-field select option,
.form-field select optgroup {
  font-family: "FuturaGG", Arial, sans-serif;
  font-weight: 300;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.contact-form-section .section-kicker {
  color: rgba(247, 244, 238, 0.58);
}

.contact-form-section select option {
  background: var(--white);
  color: var(--text);
  font-family: "FuturaGG", Arial, sans-serif;
  font-weight: 300;
}

.contact-form-section .submit-btn {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.contact-form-section .submit-btn:hover {
  background: transparent;
  color: var(--cream);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-form-status {
  margin: 0;
  color: rgba(247, 244, 238, 0.68);
  font-size: 14px;
}

.contact-form-status.is-success {
  color: var(--success);
}

.contact-form-status.is-error {
  color: var(--error);
}

.services-contact h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(34px, 4.8vw, 74px);
}

.news-card {
  display: grid;
  cursor: pointer;
}

.news-card-featured {
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  margin-bottom: clamp(28px, 4vw, 64px);
}

.news-card figure {
  height: clamp(340px, 32vw, 500px);
  margin: 0;
  padding: clamp(24px, 3vw, 48px);
  background: var(--white);
}

.news-card-featured figure {
  height: auto;
  min-height: clamp(440px, 42vw, 650px);
}

.news-card.news-card-home-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto clamp(28px, 4vw, 64px);
  border: 0;
}

.news-card.news-card-home-layout figure {
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  padding: 0;
  background: var(--surface);
}

.news-card.news-card-home-layout figure img,
.news-card.news-card-home-layout:hover figure img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transform: none !important;
}

.news-card.news-card-home-layout .news-card-copy {
  display: grid;
  gap: 22px;
  padding: 0;
}

.news-card.news-card-home-layout h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 300;
  line-height: var(--heading-line-height);
  text-transform: uppercase;
}

.news-card.news-card-home-layout p {
  margin: 0;
  max-width: 620px;
  color: rgba(5, 5, 5, 0.66);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: var(--copy-line-height);
}

.news-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.news-card:hover img {
  transform: none;
}

.news-card h2,
.product-copy h2 {
  margin-top: 4px;
}

/* History page */
.history-story,
.history-family,
.services-list,
.shop-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.35fr) minmax(320px, 1fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.history-family,
.shop-layout,
.feedback-wanted {
  border-bottom: 0;
}

.history-family,
.shop-layout {
  color: var(--text);
}

.history-story {
  border-bottom: 0;
}

section.history-story {
  padding-bottom: clamp(38px, 5vw, 72px);
}

section.history-milestones {
  padding-top: 0;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(52px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.history-year {
  position: sticky;
  top: calc(var(--header-h) + 36px);
}

.history-year span,
.milestone span {
  display: block;
  color: var(--gold);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 300;
  line-height: 1;
}

.history-milestones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.history-milestones .milestone {
  display: grid;
  grid-template-columns: minmax(280px, 0.35fr) minmax(320px, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(38px, 7vw, 110px);
  row-gap: 14px;
  min-height: 0;
  padding: clamp(38px, 5vw, 72px) 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.history-milestones .milestone span {
  grid-column: 1;
  grid-row: 1 / 3;
}

.history-milestones .milestone h2,
.history-milestones .milestone p {
  grid-column: 2;
}

.history-story-text {
  display: grid;
  gap: 26px;
}

.services-intro-copy {
  display: grid;
  gap: 26px;
  width: min(920px, 100%);
  justify-self: end;
}

.services-intro-heading {
  min-height: 0;
}

.services-intro-heading h2 {
  display: block;
}

.services-intro-heading h2 span {
  display: block;
}

.history-family,
.services-list {
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.95fr);
  align-items: center;
}

.history-family-media,
.services-list-media {
  margin: 0;
}

.history-family-copy h2,
.services-intro h2 {
  margin: 22px 0 clamp(26px, 4vw, 46px);
  font-size: clamp(38px, 5.4vw, 82px);
}

.history-family-copy .history-signature,
.services-intro-copy .services-note {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-note {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Shop and services */
.shop-layout {
  grid-template-columns: minmax(0, 1fr);
}

.filter-group h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-filter-panel > h2 {
  position: relative;
  top: -110px;
  margin: 0;
  padding-block: 10px;
  font-size: 39px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.filter-group,
.shop-content,
.service-items,
.cart-items {
  display: grid;
  gap: 12px;
}

.filter-list,
.product-modal-specs,
.gallery-modal-specs {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.filter-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--black);
}

.filter-button.is-active {
  font-weight: inherit;
}

.price-range {
  width: 100%;
  margin: 0;
  accent-color: var(--black);
  cursor: pointer;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

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

.shop-toolbar,
.product-meta span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-toolbar,
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.shop-toolbar {
  align-items: flex-start;
  flex-direction: column;
  width: fit-content;
}

.shop-filter-sticky {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: inherit;
}

.shop-filter-sticky:hover,
.shop-filter-sticky:focus-visible {
  background: transparent;
  color: var(--black);
}

.shop-filter-sticky::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.shop-filter-sticky:hover::after,
.shop-filter-sticky:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.shop-content {
  gap: clamp(26px, 4vw, 52px);
}

.cart-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  background: var(--white);
}

.cart-panel-head,
.cart-total,
.cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-panel h2 {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 300;
  line-height: var(--heading-line-height);
}

.cart-panel-head h2 {
  width: 100%;
  font-size: clamp(48px, 4vw, 68px);
  text-align: center;
  text-transform: uppercase;
}

.cart-panel-head {
  position: relative;
}

.cart-panel-head span,
.cart-total span,
.cart-clear,
.cart-item-meta,
.cart-feedback {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-feedback {
  margin: 0;
}

.cart-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 1.5em;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.cart-item-image {
  width: 72px;
  height: 72px;
  background: var(--surface);
  object-fit: contain;
}

.cart-item-title {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-controls button,
.cart-clear {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
}

.cart-item-controls button {
  width: 32px;
  height: 32px;
}

.cart-clear {
  display: inline-grid;
  width: 132px;
  min-height: 46px;
  place-items: center;
  padding: 13px 20px;
}

.cart-total {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-terms {
  display: grid;
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.cart-terms h3,
.cart-terms p,
.cart-terms ul {
  margin: 0;
}

.cart-terms h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-terms h3:not(:first-child) {
  margin-top: 12px;
}

.cart-terms ul {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.cart-total strong,
.product-modal-meta strong {
  font-size: 18px;
  font-weight: 500;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.product-ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-meta {
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-meta strong {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.product-meta span {
  text-align: right;
  white-space: nowrap;
}

.product-actions {
  margin-top: 16px;
}

.product-add-feedback {
  display: grid;
  height: 2.8em;
  margin: 9px 0 0;
  place-items: center;
  color: var(--black);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.product-add-btn {
  display: inline-grid;
  min-height: 42px;
  width: 100%;
  place-items: center;
  padding: 12px 16px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-add-btn:hover {
  background: transparent;
  color: var(--black);
}

.product-add-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.product-add-btn:disabled:hover {
  background: var(--black);
  color: var(--white);
}

.product-modal,
.news-modal,
.gallery-modal,
.cart-modal,
.shop-filter-modal {
  width: min(1120px, calc(100% - 36px));
  max-height: calc(100svh - 36px);
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  opacity: 0;
}

.product-modal::backdrop,
.news-modal::backdrop,
.gallery-modal::backdrop,
.cart-modal::backdrop,
.shop-filter-modal::backdrop {
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(8px);
}

.product-modal[open],
.news-modal[open],
.gallery-modal[open],
.cart-modal[open],
.shop-filter-modal[open] {
  display: grid;
  animation: modal-fade-in 0.2s ease forwards;
}

.product-modal[open]::backdrop,
.news-modal[open]::backdrop,
.gallery-modal[open]::backdrop,
.cart-modal[open]::backdrop,
.shop-filter-modal[open]::backdrop {
  animation: modal-backdrop-fade-in 0.2s ease forwards;
}

.product-modal.is-closing,
.news-modal.is-closing,
.gallery-modal.is-closing,
.cart-modal.is-closing,
.shop-filter-modal.is-closing {
  animation: modal-fade-out 0.2s ease forwards;
}

.product-modal.is-closing::backdrop,
.news-modal.is-closing::backdrop,
.gallery-modal.is-closing::backdrop,
.cart-modal.is-closing::backdrop,
.shop-filter-modal.is-closing::backdrop {
  animation: modal-backdrop-fade-out 0.2s ease forwards;
}

.shop-filter-modal {
  position: fixed;
  top: var(--shop-filter-top, 0);
  left: var(--shop-filter-left, 0);
  z-index: 1000;
  width: max-content;
  max-width: calc(100% - 36px);
  height: fit-content;
  min-height: 0;
  max-height: var(--shop-filter-max-height, calc(100svh - 36px));
  margin: 0;
  overflow: auto;
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  grid-template-rows: max-content;
}

.shop-filter-modal::backdrop,
.shop-filter-modal[open]::backdrop,
.shop-filter-modal.is-closing::backdrop {
  background: transparent;
  backdrop-filter: none;
  animation: none;
}

.shop-filter-panel {
  --filter-block-gap: 10px;
  display: grid;
  grid-auto-rows: max-content;
  align-content: start;
  gap: var(--filter-block-gap);
  padding: 20px 18px;
}

.shop-filter-panel .filter-list {
  grid-template-columns: 1fr;
  gap: 8px;
}

.shop-filter-panel .filter-group {
  gap: var(--filter-block-gap);
}

.shop-filter-panel .price-range {
  appearance: none;
  display: block;
  height: 16px;
  border-radius: 0;
  background: transparent;
  accent-color: var(--white);
}

.shop-filter-panel .price-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 0;
  background: var(--white);
}

.shop-filter-panel .price-range::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  border: 1px solid var(--white);
  border-radius: 0;
  background: var(--black);
}

.shop-filter-panel .price-range::-moz-range-track {
  height: 4px;
  border-radius: 0;
  background: var(--white);
}

.shop-filter-panel .price-range::-moz-range-progress {
  height: 4px;
  border-radius: 0;
  background: var(--white);
}

.shop-filter-panel .price-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 1px solid var(--white);
  border-radius: 0;
  background: var(--black);
}

.shop-filter-panel .price-range-labels {
  min-height: 0;
  margin-top: 0;
  color: var(--white);
  line-height: 1;
}

.filter-category-group,
.filter-price-group {
  justify-self: center;
  width: min(100%, 440px);
}

.shop-filter-panel .filter-button {
  position: relative;
  width: auto;
  padding: 8px 0;
  border: 0;
  outline: 0;
  text-align: left;
  transition: color 0.35s var(--ease);
}

.shop-filter-panel .filter-list li {
  text-align: left;
}

.shop-filter-panel .filter-button::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.shop-filter-panel .filter-button:hover,
.shop-filter-panel .filter-button:focus-visible,
.shop-filter-panel .filter-button.is-active {
  color: var(--white);
}

.shop-filter-panel .filter-button:hover::after,
.shop-filter-panel .filter-button.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.shop-filter-panel .filter-button:focus-visible {
  outline: 0;
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes modal-backdrop-fade-in {
  from {
    background: rgba(5, 5, 5, 0);
    backdrop-filter: blur(0);
  }
  to {
    background: rgba(5, 5, 5, 0.48);
    backdrop-filter: blur(8px);
  }
}

@keyframes modal-backdrop-fade-out {
  from {
    background: rgba(5, 5, 5, 0.48);
    backdrop-filter: blur(8px);
  }
  to {
    background: rgba(5, 5, 5, 0);
    backdrop-filter: blur(0);
  }
}

.product-modal-grid,
.news-modal-grid,
.gallery-modal-grid,
.cart-modal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  min-height: min(760px, calc(100svh - 36px));
}

.cart-modal,
.cart-modal.is-empty {
  width: min(720px, calc(100% - 36px));
}

.cart-modal[open] {
  grid-template-rows: auto minmax(0, 1fr);
}

.cart-modal > .modal-close {
  position: relative;
  top: auto;
  left: auto;
  justify-self: start;
  margin: 18px 18px 0;
}

.cart-modal .cart-modal-grid,
.cart-modal.is-empty .cart-modal-grid {
  grid-template-columns: minmax(0, 1fr);
  min-height: min(602px, calc(100svh - 114px));
}

.cart-modal.is-empty .cart-panel {
  grid-template-rows: auto auto auto auto auto auto;
  padding-top: clamp(22px, 3vw, 36px);
}

.cart-modal.is-empty .cart-panel-head {
  grid-row: 1;
}

.cart-modal.is-empty .cart-status {
  grid-row: 2;
}

.cart-modal.is-empty .cart-items {
  display: none;
}

.product-modal-media,
.news-modal-media,
.gallery-modal-media {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.product-modal-media img,
.news-modal-media img,
.gallery-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-modal .cart-panel {
  align-content: start;
  max-height: calc(100svh - 36px);
  overflow: auto;
  border: 0;
}

.product-modal-copy,
.news-modal-copy,
.gallery-modal-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(34px, 5vw, 72px);
  overflow: auto;
}

.product-modal-kicker,
.product-modal-ribbon,
.gallery-modal-kicker,
.news-modal-copy time {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-modal-copy h2,
.news-modal-copy h2,
.gallery-modal-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 300;
  line-height: var(--heading-line-height);
}

.product-modal-description,
.news-modal-body p,
.gallery-modal-description {
  margin: 0;
  color: rgba(5, 5, 5, 0.7);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: var(--copy-line-height);
}

.news-modal-body {
  display: grid;
  gap: var(--paragraph-gap);
}

.news-modal-body a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.news-modal-link {
  justify-self: start;
  margin-top: 4px;
}

.news-modal-link[hidden] {
  display: none;
}

.product-modal-specs li::before,
.gallery-modal-specs li::before {
  content: "- ";
}

.product-modal-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-modal-meta span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-modal-actions .cart-feedback {
  flex-basis: 100%;
  min-height: 1.55em;
  color: var(--black);
}

.modal-close {
  appearance: none;
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 0;
  height: 60px;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  mix-blend-mode: normal;
  cursor: pointer;
  font-size: 0;
  letter-spacing: 0;
  outline: 0;
  box-shadow: none;
  opacity: 1;
  transform: rotate(0);
  transition: transform 0.3s ease;
}

.modal-close:focus-visible,
.modal-close:active,
.is-closing > .modal-close {
  background: transparent;
  color: var(--black);
  outline: 0;
  box-shadow: none;
  transform: rotate(0);
}

@media (hover: hover) and (pointer: fine) {
  .modal-close:hover:not(:active) {
    background: transparent;
    color: var(--black);
    transform: rotate(180deg);
  }
}

.modal-close span {
  position: absolute;
  display: block;
  width: 64px;
  height: 1px;
  background: var(--black);
  transform-origin: center;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

[data-add-to-cart]:disabled,
.cart-actions .submit-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.42;
}

.services-list {
  border-bottom: 0;
}

.service-items {
  gap: clamp(20px, 2.5vw, 36px);
  background: transparent;
}

.service-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px 26px;
}

.service-item span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.18em;
}

/* Footer */
.site-footer {
  position: relative;
  padding: clamp(64px, 8vw, 120px) var(--pad) 54px;
  border-top: 0;
  background: var(--footer);
  color: var(--cream);
  text-align: left;
}

.site-footer::before {
  position: absolute;
  bottom: 32px;
  right: var(--pad);
  width: clamp(58px, 6vw, 86px);
  aspect-ratio: 1;
  content: "";
  background: url("assets/home/logo.webp") center / contain no-repeat;
  background-image: image-set(
    url("assets/home/logo.avif") type("image/avif"),
    url("assets/home/logo.webp") type("image/webp")
  );
  filter: invert(1);
}

.js-nocturne .site-footer {
  background: transparent;
  border-top-color: transparent;
}

.js-nocturne .services-contact,
.js-nocturne .contact-form-section,
.js-nocturne .feedback-wanted {
  background: transparent;
  color: inherit;
  transition: color 0.8s ease;
}

.js-nocturne .feedback-wanted {
  transition: none;
}

.js-nocturne .services-contact h2,
.js-nocturne .contact-form-section h2,
.js-nocturne .feedback-wanted h2 {
  color: inherit;
}

body.contact-nocturne .services-contact,
body.contact-nocturne .contact-form-section,
body.contact-nocturne .feedback-wanted {
  color: var(--cream);
}

.js-nocturne .contact-form-section {
  border-top-color: color-mix(in srgb, currentColor 12%, transparent);
  transition:
    color 0.8s ease,
    border-color 0.8s ease;
}

.js-nocturne .contact-form-intro,
.js-nocturne .form-field label,
.js-nocturne .contact-form-status {
  color: inherit;
  opacity: 0.76;
  transition: color 0.8s ease, opacity 0.8s ease;
}

body.contact-nocturne .contact-form-intro,
body.contact-nocturne .form-field label,
body.contact-nocturne .contact-form-status {
  opacity: 0.9;
}

.js-nocturne .form-field input,
.js-nocturne .form-field select,
.js-nocturne .form-field textarea {
  border-bottom-color: color-mix(in srgb, currentColor 28%, transparent);
  color: inherit;
  transition:
    border-color 0.4s var(--ease),
    color 0.8s ease;
}

.js-nocturne .contact-form-section .submit-btn,
.js-nocturne .services-contact .submit-btn {
  border-color: var(--black);
  background: var(--black);
  color: var(--cream);
}

body.contact-nocturne .contact-form-section .submit-btn,
body.contact-nocturne .services-contact .submit-btn {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.js-nocturne .contact-form-section .submit-btn:hover,
.js-nocturne .services-contact .submit-btn:hover,
body.contact-nocturne .contact-form-section .submit-btn:hover,
body.contact-nocturne .services-contact .submit-btn:hover {
  background: transparent;
  color: inherit;
}

body.contact-nocturne .feedback-wanted .section-kicker {
  color: rgba(247, 244, 238, 0.86);
}

.js-nocturne .feedback-wanted .submit-btn {
  border-color: var(--black);
  background: var(--black);
  color: var(--cream);
}

body.contact-nocturne .feedback-wanted .submit-btn {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

body.contact-nocturne .feedback-wanted .submit-btn:hover {
  background: transparent;
  color: var(--cream);
}

/* Shared button transition */
button,
.submit-btn {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 90px);
  margin-bottom: clamp(58px, 7vw, 96px);
  text-align: center;
}

.footer-grid section {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: rgba(247, 244, 238, 0.68);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-grid a {
  width: max-content;
  margin-inline: auto;
  color: var(--cream);
  font-size: 14px;
  transition: color 0.35s var(--ease);
}

.footer-grid a:hover {
  color: var(--gold);
}

.site-footer p {
  margin: 0;
  color: rgba(247, 244, 238, 0.54);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1180px) {
  :root {
    --header-h: 88px;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    min-height: var(--header-h);
    padding: 18px var(--pad);
  }

  .brand {
    align-items: flex-start;
    margin: 0;
    text-align: left;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-subtitle {
    letter-spacing: 0.52em;
    transform: translateX(2px);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
    width: min(420px, 100%);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    padding: 88px 44px 44px;
    background: rgba(5, 5, 5, 0.98);
    transform: translateX(100%);
    transition: transform 0.7s var(--ease);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    color: var(--white);
    font-size: 15px;
    line-height: 1.25;
    text-align: right;
  }

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

  .main-nav a::after {
    background: var(--white);
  }

  .main-nav .nav-cart-btn {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
  }

  .main-nav .nav-cart-btn:hover,
  .main-nav .nav-cart-btn:focus-visible {
    background: transparent;
    color: var(--white);
  }

  .menu-toggle {
    position: relative;
    z-index: 70;
    display: grid;
    justify-self: end;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    grid-area: 1 / 1;
    width: 48px;
    height: 1px;
    background: var(--black);
    transition: transform 0.3s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle.is-open span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: rotate(-45deg);
  }

  .menu-toggle.is-open {
    border: 0;
  }

  .menu-toggle.is-open span {
    background: var(--white);
  }
}

@media (max-width: 900px) {
  .news-card.news-card-home-layout {
    grid-template-columns: 1fr;
  }

  .product-modal,
  .news-modal {
    height: min(760px, calc(100dvh - 36px));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .product-modal[open],
  .news-modal[open] {
    grid-template-rows: auto max-content;
    align-content: start;
  }

  .product-modal > .modal-close,
  .news-modal > .modal-close {
    position: sticky;
    top: 0;
    left: auto;
    justify-self: start;
    margin: 0;
    background: var(--white);
  }

  .text-columns,
  .history-section,
  .featured-news,
  .news-card-featured,
  .product-modal-grid,
  .news-modal-grid,
  .gallery-modal-grid,
  .cart-modal-grid,
  .history-story,
  .history-family,
  .shop-layout,
  .services-intro,
  .services-list {
    grid-template-columns: 1fr;
  }

  .product-modal-grid,
  .news-modal-grid {
    height: auto;
    min-height: 0;
    overflow: visible;
    grid-template-rows: minmax(240px, 58vw) auto;
  }

  .product-modal-copy,
  .news-modal-copy {
    min-width: 0;
    min-height: 0;
    align-content: start;
    overflow: visible;
  }

  .product-modal-media img,
  .news-modal-media img {
    object-fit: contain;
  }

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

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

  .gallery-item,
  .gallery-item-large {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .history-media img,
  .history-page-media img,
  .services-hero-media img {
    height: auto;
  }

  .history-year {
    position: static;
  }

  .news-grid,
  .shop-grid {
    --cols: 2;
  }

  .team-section .contact-team-media {
    display: none;
  }

  .team-section .team-grid {
    --cols: 1;
    padding-top: 0;
  }

  .team-card {
    grid-template-columns: minmax(120px, 38%) minmax(0, 1fr);
  }

  .team-card-portrait {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 230px;
    overflow: hidden;
  }

  .team-card-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-card-copy {
    align-content: center;
    justify-items: center;
    padding: clamp(20px, 5vw, 42px);
  }

  .team-card .team-phone {
    white-space: normal;
  }

  .team-card .team-phone::before {
    display: none;
  }

  .team-card .team-phone span {
    display: block;
    margin: 0 0 3px;
  }

  .product-media {
    aspect-ratio: auto;
    background: transparent;
  }

  .product-media img,
  .product-card:hover .product-media img {
    width: 70%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    transform: none !important;
  }

  .news-card figure img,
  .news-card:hover figure img {
    width: 70%;
    height: 70%;
    margin: 15%;
    object-fit: contain;
    transform: none !important;
  }

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

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

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

  .archive-item-wide,
  .collection-panel-large,
  .editorial-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 52px;
    --pad: 18px;
  }

  .contact-form-grid {
    gap: 24px;
  }

  .contact-form-grid .form-field {
    gap: 2px;
  }

  .contact-form-grid .form-field input,
  .contact-form-grid .form-field select {
    min-height: 38px;
    padding: 5px 0;
  }

  .contact-form-grid .form-field textarea {
    padding-top: 7px;
  }

  .site-header {
    padding: 7px 18px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  .menu-toggle span {
    width: 32px;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--header-h) + 70px) 18px 58px;
  }

  .home-page .hero {
    padding: 0 18px;
  }

  .home-page .hero-content {
    right: 18px;
    bottom: 44px;
    left: 18px;
    width: auto;
  }

  .section-pad {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .internal-page-hero {
    padding-top: 86px;
  }

  .hero-title,
  .internal-page-title {
    font-size: clamp(30px, 8.8vw, 52px);
  }

  .hero-title .hero-title-subtitle {
    font-size: 0.3em;
  }

  .home-page .hero-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .services-title {
    font-size: clamp(24px, 7.3vw, 52px);
  }

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

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

  .feedback-page-hero + .section-pad {
    padding-top: 100px;
  }

  .feedback-card {
    --feedback-copy-overlap: clamp(56px, 18vw, 76px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 78vw) auto;
    min-height: 0;
    border-left: 0;
    background: transparent;
  }

  .feedback-card img {
    justify-self: center;
    width: 70%;
    min-width: 0;
    min-height: 0;
    height: 100%;
    margin-bottom: 0;
    object-fit: cover;
  }

  .feedback-card > div {
    position: relative;
    z-index: 1;
    align-content: start;
    margin-top: calc(-1 * var(--feedback-copy-overlap));
    margin-bottom: var(--feedback-copy-overlap);
    padding: clamp(24px, 7vw, 34px);
    isolation: isolate;
  }

  .feedback-card > div::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: var(--surface);
    opacity: 0.7;
  }

  .archive-item,
  .archive-item-wide,
  .archive-item-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .collection-panel,
  .collection-panel-large {
    grid-column: auto;
    grid-template-rows: minmax(280px, 78vw) auto;
  }

  .news-grid,
  .shop-grid {
    --cols: 1;
    gap: 18px;
  }

  .team-grid {
    gap: 18px;
  }

  .news-card figure,
  .news-card-featured figure {
    height: 360px;
    min-height: 0;
  }

  .shop-toolbar,
  .product-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .cart-item-controls {
    grid-column: 2;
  }

  .cart-item-image {
    width: 64px;
    height: 64px;
  }

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

  .history-family-media img,
  .services-list-media img {
    height: 300px;
  }

  .history-milestones .milestone {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    min-height: 0;
  }

  .history-milestones .milestone span,
  .history-milestones .milestone h2,
  .history-milestones .milestone p {
    grid-column: 1;
    grid-row: auto;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item span {
    grid-row: auto;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
  }

  .scroll-cue {
    right: 18px;
    bottom: 18px;
  }

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

  .editorial-card,
  .editorial-card-large {
    grid-column: auto;
    min-height: 420px;
  }

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

  .footer-grid h2 {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .footer-grid a {
    width: auto;
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .site-footer::before {
    right: 18px;
    bottom: 24px;
    width: 58px;
  }
}

@media (max-width: 560px) {
  :root {
    --internal-page-text-gap: 18px;
    --internal-page-lede-gap: 14px;
    --internal-page-content-gap: 48px;
  }

  .shop-filter-panel {
    padding: 16px 14px;
  }
}

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

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

  .reveal,
  .reveal-lines,
  .reveal-image {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .home-page .hero-media,
  .home-page .hero-media img,
  .home-page .hero.has-scroll-motion .hero-media,
  .home-page .hero-heading-kicker,
  .home-page .hero-title,
  .home-page .hero-copy,
  .home-page .hero-actions {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .js-scroll-reveal .scroll-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
