:root {
  --hiraya-canvas: #f8f6f4;
  --hiraya-paper: #fffdfa;
  --hiraya-rose-soft: #eadbd8;
  --hiraya-rose: #925751;
  --hiraya-rose-deep: #72423e;
  --hiraya-accent: #9a651d;
  --hiraya-accent-on-rose: #ffe3a0;
  --hiraya-ink: #2b2625;
  --hiraya-muted: #746b68;
  --hiraya-line: #ddd6d3;
  --hiraya-content: 1440px;
  --hiraya-gutter: clamp(18px, 4vw, 64px);
  --hiraya-page-gutter: clamp(16px, 1.4vw, 24px);
  --hiraya-header-height: 72px;
  --hiraya-mega-menu-height: clamp(224px, 16vw, 252px);
  --hiraya-ease: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.hiraya-site {
  min-width: 320px;
  margin: 0;
  background: var(--hiraya-canvas);
  color: var(--hiraya-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.hiraya-site figure {
  margin: 0;
}

.hiraya-site a {
  color: inherit;
  text-decoration: none;
}

.hiraya-site button,
.hiraya-site input,
.hiraya-site select {
  font: inherit;
}

.hiraya-site :focus-visible {
  outline: 2px solid var(--hiraya-rose);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 14px;
  background: var(--hiraya-ink);
  color: var(--hiraya-paper);
  transform: translateY(-180%);
}

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

[data-global-header] {
  height: var(--hiraya-header-height);
}

.hiraya-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  width: 100%;
  height: var(--hiraya-header-height);
  border-bottom: 1px solid color-mix(in srgb, var(--hiraya-line), transparent 20%);
  background: color-mix(in srgb, var(--hiraya-canvas), transparent 5%);
  backdrop-filter: blur(14px);
  transform: translate3d(0, 0, 0);
  transition: transform .38s var(--hiraya-ease);
  will-change: transform;
}

.hiraya-header.is-hidden {
  transform: translate3d(0, calc(-100% - 2px), 0);
}

.hiraya-header.is-menu-open,
.hiraya-header.is-mega-open,
.hiraya-header:focus-within {
  transform: translate3d(0, 0, 0);
}

.hiraya-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--hiraya-page-gutter);
}

.hiraya-nav__primary {
  display: flex;
  align-items: center;
  justify-self: start;
  height: 100%;
  min-width: 0;
  gap: clamp(10px, 1.05vw, 18px);
}

.hiraya-nav__item {
  display: flex;
  align-items: center;
  height: 100%;
}

.hiraya-nav__link,
.hiraya-nav__social {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hiraya-nav__primary .hiraya-nav__link {
  position: relative;
  min-height: 40px;
  font-size: 10px;
  letter-spacing: .075em;
  white-space: nowrap;
}

.hiraya-nav__primary .hiraya-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .32s var(--hiraya-ease);
}

.hiraya-nav__primary .hiraya-nav__link:hover::after,
.hiraya-nav__item.is-mega-active > .hiraya-nav__link::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.hiraya-mega-menu {
  position: fixed;
  top: var(--hiraya-header-height);
  right: 0;
  left: 0;
  height: var(--hiraya-mega-menu-height);
  visibility: hidden;
  color: var(--hiraya-ink);
  pointer-events: none;
  text-shadow: none;
  transition: visibility 0s linear .38s;
}

.hiraya-mega-menu__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: var(--hiraya-paper);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--hiraya-line), transparent 30%);
  opacity: 0;
  transform: translate3d(0, -16px, 0);
  transition:
    opacity .24s ease,
    transform .38s var(--hiraya-ease);
}

.hiraya-mega-menu__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: clamp(24px, 2.2vw, 34px) clamp(18px, 2.2vw, 34px);
  gap: clamp(36px, 6vw, 100px);
}

.hiraya-mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 185px));
  align-content: start;
  gap: clamp(30px, 4vw, 72px);
}

.hiraya-mega-menu__columns--custom {
  width: min(860px, 78vw);
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: clamp(26px, 4vw, 70px);
}

.hiraya-mega-menu__group p {
  margin: 0 0 10px;
  color: var(--hiraya-muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hiraya-mega-menu__group a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.45;
  transition:
    color .24s ease,
    transform .28s var(--hiraya-ease);
}

.hiraya-mega-menu__group a:hover,
.hiraya-mega-menu__group a:focus-visible {
  color: var(--hiraya-rose);
  transform: translateX(3px);
}

.hiraya-mega-menu__features {
  display: grid;
  grid-template-columns: repeat(2, clamp(112px, 10vw, 148px));
  align-self: stretch;
  gap: clamp(12px, 1.4vw, 22px);
}

.hiraya-mega-menu__feature {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.35;
}

.hiraya-mega-menu__feature img {
  width: 100%;
  height: clamp(132px, calc(var(--hiraya-mega-menu-height) - 100px), 152px);
  min-height: 0;
  flex: none;
  object-fit: cover;
  filter: saturate(.86);
  transition:
    filter .32s ease,
    transform .45s var(--hiraya-ease);
}

.hiraya-mega-menu__feature:hover img,
.hiraya-mega-menu__feature:focus-visible img {
  filter: saturate(1);
  transform: scale(.985);
}

.hiraya-mega-menu__backdrop {
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100vh - var(--hiraya-header-height) - var(--hiraya-mega-menu-height));
  background: rgb(43 38 37 / .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}

.hiraya-nav__item.is-mega-active .hiraya-mega-menu {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.hiraya-nav__item.is-mega-active .hiraya-mega-menu__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hiraya-nav__item.is-mega-active .hiraya-mega-menu__backdrop {
  opacity: 1;
}

.hiraya-nav__link i,
.hiraya-nav__social i {
  color: var(--hiraya-rose);
  font-size: 17px;
  transition: transform .25s var(--hiraya-ease);
}

.hiraya-nav__link:hover i {
  transform: translate(2px, -2px);
}

.hiraya-nav__social {
  justify-self: end;
}

.hiraya-menu-toggle,
.hiraya-mobile-menu {
  display: none;
}

.hiraya-menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.hiraya-menu-toggle span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--hiraya-ease);
}

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

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

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

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

.hiraya-site.has-open-menu {
  overflow: hidden;
}

.hiraya-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--hiraya-accent);
  line-height: 1;
}

.hiraya-wordmark strong {
  font-family: "Italiana", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .27em;
  transform: translateX(.13em);
}

.hiraya-wordmark small {
  margin-top: 5px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  transform: translateX(.17em);
}

.hiraya-main {
  display: block;
  width: 100%;
  max-width: none;
  overflow: clip;
}

.hiraya-site[data-page="home"] [data-global-header] {
  position: relative;
  z-index: 20;
  height: 0;
}

.hiraya-site[data-page="home"] .hiraya-header {
  border-bottom: 0;
  background: transparent;
  color: var(--hiraya-paper);
  backdrop-filter: none;
  text-shadow: 0 1px 12px rgb(43 38 37 / .45);
  transition:
    color .3s var(--hiraya-ease),
    background-color .3s var(--hiraya-ease),
    box-shadow .3s var(--hiraya-ease),
    text-shadow .3s var(--hiraya-ease),
    transform .38s var(--hiraya-ease);
  will-change: transform;
}

.hiraya-site[data-page="home"] .hiraya-wordmark,
.hiraya-site[data-page="home"] .hiraya-nav__link i,
.hiraya-site[data-page="home"] .hiraya-nav__social i {
  color: var(--hiraya-paper);
}

.hiraya-site[data-page="home"] .hiraya-header.is-solid {
  background: color-mix(in srgb, var(--hiraya-paper), transparent 4%);
  color: var(--hiraya-ink);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--hiraya-line), transparent 15%);
  backdrop-filter: blur(14px);
  text-shadow: none;
}

.hiraya-site[data-page="home"] .hiraya-header.is-menu-open,
.hiraya-site[data-page="home"] .hiraya-header.is-mega-open {
  background: var(--hiraya-paper);
  color: var(--hiraya-ink);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--hiraya-line), transparent 15%);
  backdrop-filter: blur(14px);
  text-shadow: none;
  transform: translate3d(0, 0, 0);
}

.hiraya-site[data-page="home"] .hiraya-header.is-solid .hiraya-nav__link i,
.hiraya-site[data-page="home"] .hiraya-header.is-solid .hiraya-nav__social i {
  color: var(--hiraya-rose);
}

.hiraya-site[data-page="home"] .hiraya-header.is-mega-open .hiraya-wordmark,
.hiraya-site[data-page="home"] .hiraya-header.is-mega-open .hiraya-nav__link i,
.hiraya-site[data-page="home"] .hiraya-header.is-mega-open .hiraya-nav__social i {
  color: var(--hiraya-accent);
}

.editorial-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  height: 100svh;
  min-height: 600px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--hiraya-rose-soft);
}

.editorial-hero__media {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #d5c2ba;
}

.editorial-hero__media--still-life {
  background: #eadfd5;
}

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

.editorial-hero__media--portrait img {
  object-position: 52% center;
}

.editorial-hero__media--still-life img {
  object-position: center 53%;
}

.editorial-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 50%;
  background: linear-gradient(0deg, rgb(43 38 37 / .34) 0%, transparent 28%);
  pointer-events: none;
}

.editorial-hero__copy {
  position: absolute;
  bottom: clamp(24px, 2.2vw, 34px);
  left: clamp(20px, 2vw, 32px);
  z-index: 2;
  width: max-content;
  max-width: calc(50% - 40px);
  color: var(--hiraya-paper);
  text-shadow: 0 1px 10px rgb(43 38 37 / .5);
}

.editorial-hero__copy h1 {
  margin: 0 0 2px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-wrap: pretty;
}

.editorial-hero__copy a {
  display: inline-flex;
  align-items: center;
  padding-bottom: 1px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  transition: color .25s var(--hiraya-ease), opacity .25s var(--hiraya-ease);
}

.editorial-hero__copy a:hover {
  color: var(--hiraya-accent-on-rose);
}

.editorial-hero__copy a:active {
  transform: translateY(1px);
}

.brand-statement {
  display: grid;
  place-items: center;
  min-height: clamp(390px, 45vw, 570px);
  padding: clamp(86px, 10vw, 150px) var(--hiraya-gutter) clamp(96px, 11vw, 164px);
  background: var(--hiraya-paper);
}

.brand-statement__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.brand-statement h2 {
  max-width: 36ch;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.32;
  text-wrap: balance;
}

.brand-statement a,
.custom-story__card a {
  display: inline-flex;
  margin-top: 25px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  transition: color .25s var(--hiraya-ease), transform .25s var(--hiraya-ease);
}

.brand-statement a:hover,
.custom-story__card a:hover {
  color: var(--hiraya-rose);
}

.brand-statement a:active,
.custom-story__card a:active {
  transform: translateY(1px);
}

.custom-story {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: calc(100svh - var(--hiraya-header-height));
  min-height: 620px;
  overflow: hidden;
  background: #b9988c;
  clip-path: inset(0);
}

.custom-story__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.custom-story__image {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  object-position: center 51%;
}

.custom-story__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgb(43 38 37 / .32) 0%, transparent 38%),
    linear-gradient(315deg, rgb(43 38 37 / .12) 0%, transparent 34%);
  pointer-events: none;
}

.custom-story > h2 {
  position: absolute;
  top: clamp(32px, 4vw, 58px);
  left: clamp(24px, 3vw, 48px);
  z-index: 2;
  max-width: 20ch;
  margin: 0;
  color: var(--hiraya-paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(23px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.25;
  text-shadow: 0 1px 16px rgb(43 38 37 / .4);
  text-wrap: balance;
}

.custom-story__card {
  position: absolute;
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(24px, 3vw, 48px);
  z-index: 2;
  width: min(340px, calc(100% - 48px));
  padding: clamp(26px, 2.6vw, 38px);
  background: var(--hiraya-paper);
}

.custom-story__card p {
  margin: 0;
  color: var(--hiraya-ink);
  font-size: 11px;
  line-height: 1.65;
  text-wrap: pretty;
}

.custom-story__card a {
  margin-top: 20px;
}

.hiraya-hero {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  width: min(100%, var(--hiraya-content));
  height: clamp(540px, calc(100svh - var(--hiraya-header-height) - 54px), 690px);
  margin: 0 auto;
  padding: 44px var(--hiraya-gutter) 10px;
  gap: 10px;
}

.hiraya-kicker {
  margin: 0 0 18px;
  color: var(--hiraya-rose);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-panel h1,
.catalogue-intro h1,
.product-detail__copy h1,
.collection-heading h1,
.collection-heading h2,
.related-heading h2,
.state-message h1 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.06;
}

.hiraya-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 22px;
  gap: 10px;
  border: 1px solid var(--hiraya-rose);
  background: var(--hiraya-rose);
  color: var(--hiraya-paper) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background-color .25s var(--hiraya-ease), border-color .25s var(--hiraya-ease), transform .25s var(--hiraya-ease);
}

.hiraya-button:hover {
  border-color: var(--hiraya-rose-deep);
  background: var(--hiraya-rose-deep);
}

.hiraya-button:active {
  transform: scale(.98);
}

.hiraya-button i {
  font-size: 18px;
}

.hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--hiraya-rose-soft);
}

.hero-panel--primary {
  grid-row: 1 / span 2;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(43 38 37 / .44);
  pointer-events: none;
}

.hero-panel--top::after {
  background: rgb(43 38 37 / .35);
}

.hero-panel--bottom::after {
  background: rgb(43 38 37 / .4);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--hiraya-ease), opacity .65s var(--hiraya-ease);
}

.hero-panel--primary img {
  object-position: center 48%;
}

.hero-panel--top img {
  object-position: center 56%;
}

.hero-panel--bottom img {
  object-position: center 58%;
}

.hero-panel:hover img {
  transform: scale(1.025);
}

.hero-panel__frame {
  position: absolute;
  inset: clamp(18px, 2.2vw, 30px);
  z-index: 2;
  border: 1px solid rgb(255 253 250 / .76);
  pointer-events: none;
}

.hero-panel__copy {
  position: absolute;
  z-index: 3;
  color: var(--hiraya-paper);
  text-shadow: 0 1px 14px rgb(43 38 37 / .45);
}

.hero-panel__copy--primary {
  top: 50%;
  left: 50%;
  width: min(78%, 470px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-panel__eyebrow {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero-panel h1 {
  max-width: 10ch;
  margin: 0 auto;
  font-size: clamp(48px, 5.2vw, 78px);
}

.hero-panel__copy--primary > p:not(.hero-panel__eyebrow) {
  max-width: 37ch;
  margin: 20px auto 0;
  font-size: 14px;
}

.hero-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid rgb(255 253 250 / .9);
  background: rgb(43 38 37 / .24);
  color: var(--hiraya-paper) !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background-color .25s var(--hiraya-ease), color .25s var(--hiraya-ease), transform .25s var(--hiraya-ease);
}

.hero-panel__button:hover {
  background: var(--hiraya-paper);
  color: var(--hiraya-rose-deep) !important;
}

.hero-panel__button:active,
.hero-panel__link:active {
  transform: scale(.98);
}

.hero-panel__copy--secondary {
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(24px, 4vw, 58px);
}

.hero-panel__copy--secondary h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(20px, 2.1vw, 31px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.2;
}

.hero-panel__link {
  display: inline-flex;
  align-items: center;
  margin-top: 13px;
  padding-bottom: 4px;
  gap: 8px;
  border-bottom: 1px solid rgb(255 253 250 / .82);
  color: var(--hiraya-paper) !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .25s var(--hiraya-ease), transform .25s var(--hiraya-ease);
}

.hero-panel__link:hover {
  border-color: var(--hiraya-accent-on-rose);
}

.home-collections {
  width: min(100%, var(--hiraya-content));
  margin: 0 auto;
  background: transparent;
  padding: clamp(38px, 4.5vw, 68px) var(--hiraya-gutter) clamp(72px, 8vw, 116px);
}

.collection-row {
  display: grid;
  gap: 10px;
}

.collection-row--top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(330px, 26vw, 436px);
}

.collection-row--bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(330px, 26vw, 436px);
  margin-top: 10px;
}

.collection-heading {
  display: flex;
  align-items: flex-start;
  align-self: center;
  flex-direction: column;
  max-width: 480px;
  padding: 0 clamp(28px, 4.5vw, 72px) 0 clamp(26px, 2.3vw, 38px);
}

.collection-heading h1,
.collection-heading h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.06;
  font-size: clamp(42px, 4.4vw, 68px);
  text-wrap: balance;
}

.collection-heading p {
  max-width: 34ch;
  margin: 34px 0 0;
  color: var(--hiraya-muted);
}

.collection-heading__inquiry {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  gap: 7px;
  color: var(--hiraya-rose) !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s var(--hiraya-ease), transform .25s var(--hiraya-ease);
}

.collection-heading__inquiry:hover {
  color: var(--hiraya-rose-deep) !important;
  transform: translateX(3px);
}

.collection-heading__inquiry i {
  font-size: 15px;
}

.category-card {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  min-width: 0;
  min-height: 100%;
  padding: clamp(26px, 2.3vw, 38px);
  background: #f5ece8;
  transition: background-color .35s var(--hiraya-ease), transform .35s var(--hiraya-ease);
}

.category-card--rings {
  background: #f5ece9;
}

.category-card--earrings {
  background: #f7f5f1;
}

.category-card--necklaces {
  background: #f3e7e3;
}

.category-card--bracelets {
  background: #f7f4ef;
}

.category-card--custom {
  background: #ecd4d1;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  pointer-events: none;
}

.category-card:hover {
  background: #eadbd6;
}

.category-card:active {
  transform: scale(.992);
}

.category-card__title {
  position: absolute;
  top: clamp(38px, 3.4vw, 54px);
  left: clamp(26px, 2.3vw, 38px);
  z-index: 2;
  max-width: calc(100% - 50px);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 2.5vw, 40px);
  letter-spacing: -.02em;
  line-height: .98;
}

.category-card__action {
  position: absolute;
  bottom: clamp(28px, 2.5vw, 40px);
  left: clamp(26px, 2.3vw, 38px);
  z-index: 2;
  display: block;
  width: 128px;
  height: 26px;
  overflow: hidden;
  color: color-mix(in srgb, var(--hiraya-accent), transparent 10%);
}

.category-card__action-arrow,
.category-card__action-label {
  position: absolute;
  top: 50%;
  left: 0;
  white-space: nowrap;
  transition: opacity .28s var(--hiraya-ease), transform .28s var(--hiraya-ease);
}

.category-card__action-arrow {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  opacity: 1;
  transform: translateY(-58%);
}

.category-card__action-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(120%);
}

.category-card__illustration {
  position: absolute;
  z-index: 1;
  height: auto;
  opacity: .9;
  mix-blend-mode: multiply;
  transition: opacity .35s var(--hiraya-ease), transform .55s var(--hiraya-ease);
}

.category-card--rings .category-card__illustration {
  right: -7%;
  bottom: -13%;
  width: min(78%, 380px);
}

.category-card--earrings .category-card__illustration {
  right: -1%;
  bottom: -9%;
  width: min(66%, 320px);
}

.category-card--necklaces .category-card__illustration {
  right: -3%;
  bottom: -7%;
  width: min(74%, 390px);
}

.category-card--bracelets .category-card__illustration {
  right: -3%;
  bottom: -20%;
  width: min(76%, 450px);
}

.category-card--custom .category-card__illustration {
  right: -31%;
  bottom: -27%;
  width: min(100%, 410px);
}

.category-card:hover .category-card__action-arrow,
.category-card:focus-visible .category-card__action-arrow {
  opacity: 0;
  transform: translateY(-150%);
}

.category-card:hover .category-card__action-label,
.category-card:focus-visible .category-card__action-label {
  opacity: 1;
  transform: translateY(-50%);
}

.category-card:hover .category-card__illustration {
  opacity: 1;
  transform: translateY(-4px) rotate(-.6deg);
}

.collection-credentials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 0;
  padding: 20px 4px 0;
  gap: 24px;
  border-top: 1px solid var(--hiraya-line);
  color: var(--hiraya-muted);
  list-style: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.collection-credentials li {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.credential-mark {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  overflow: visible;
  color: var(--hiraya-rose);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credential-mark--diamonds {
  width: 33px;
}

.credential-mark__fine {
  opacity: .48;
  stroke-width: .72;
}

.hiraya-page,
.catalogue-page,
.product-page {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--hiraya-page-gutter);
}

.catalogue-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: 260px;
  padding: clamp(52px, 7vw, 96px) 0 36px;
  gap: 30px;
  border-bottom: 1px solid var(--hiraya-line);
}

.catalogue-intro h1 {
  font-size: clamp(46px, 6vw, 82px);
}

.catalogue-intro h1.catalogue-intro__title--compact {
  font-size: clamp(32px, 4.5vw, 60px);
}

.catalogue-intro__count {
  margin: 0 0 10px;
  color: var(--hiraya-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.category-filters {
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding: 20px 0;
  gap: 28px;
  border-bottom: 1px solid var(--hiraya-line);
  scrollbar-width: none;
}

.category-filters::-webkit-scrollbar {
  display: none;
}

.category-filters a {
  position: relative;
  flex: 0 0 auto;
  padding: 6px 0;
  color: var(--hiraya-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.category-filters a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--hiraya-rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--hiraya-ease);
}

.category-filters a:hover,
.category-filters a.is-active {
  color: var(--hiraya-ink);
}

.category-filters a:hover::after,
.category-filters a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: clamp(36px, 5vw, 72px) 0 clamp(90px, 10vw, 150px);
  column-gap: clamp(16px, 2.2vw, 34px);
  row-gap: clamp(42px, 6vw, 84px);
}

.catalogue-grid.is-filtering,
.category-filters.is-filtering {
  pointer-events: none;
}

.category-filters[hidden],
.product-detail[hidden],
.related-section[hidden],
.catalogue-card[hidden] {
  display: none;
}

.catalogue-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee9e6;
}

.catalogue-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--hiraya-ease), opacity .55s var(--hiraya-ease);
}

.catalogue-card:hover .catalogue-card__media img {
  opacity: .93;
  transform: scale(1.025);
}

.catalogue-card__copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 15px;
  gap: 12px;
}

.catalogue-card h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 400;
  line-height: 1.2;
}

.catalogue-card p {
  margin: 4px 0 0;
  color: var(--hiraya-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.catalogue-card__cert {
  display: inline-flex;
  align-items: center;
  margin-top: 9px;
  gap: 6px;
  color: var(--hiraya-rose-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalogue-card__cert i {
  font-size: 14px;
}

.catalogue-card__arrow {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--hiraya-line);
  color: var(--hiraya-rose);
  transition: border-color .25s var(--hiraya-ease), color .25s var(--hiraya-ease), transform .25s var(--hiraya-ease);
}

.catalogue-card__arrow:hover {
  border-color: var(--hiraya-rose);
  color: var(--hiraya-rose-deep);
  transform: translate(1px, -1px);
}

.state-message {
  padding: 100px 0 140px;
  text-align: center;
}

.state-message h1,
.state-message h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
}

.state-message p {
  margin: 14px auto 0;
  color: var(--hiraya-muted);
}

.state-message a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--hiraya-rose-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-page {
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(90px, 10vw, 150px);
}

.product-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  gap: 8px;
  color: var(--hiraya-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-back:hover {
  color: var(--hiraya-rose-deep);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(42px, 7vw, 106px);
}

.product-detail__media {
  min-height: 660px;
  background: #eee9e6;
}

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

.product-detail__copy {
  align-self: start;
  position: sticky;
  top: calc(var(--hiraya-header-height) + 42px);
  padding-top: clamp(24px, 4vw, 68px);
}

.product-detail__copy h1 {
  max-width: 10ch;
  font-size: clamp(46px, 5vw, 72px);
}

.product-detail__description {
  max-width: 46ch;
  margin: 25px 0 0;
  color: var(--hiraya-muted);
  font-size: 16px;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--hiraya-line);
  border-left: 1px solid var(--hiraya-line);
}

.product-fact {
  min-height: 92px;
  padding: 17px;
  border-right: 1px solid var(--hiraya-line);
  border-bottom: 1px solid var(--hiraya-line);
}

.product-fact small {
  display: block;
  margin-bottom: 8px;
  color: var(--hiraya-rose);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-fact strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.product-note {
  margin: 16px 0 0;
  color: var(--hiraya-muted);
  font-size: 12px;
}

.product-inquiry {
  width: 100%;
}

.related-section {
  margin-top: clamp(90px, 11vw, 160px);
  padding-top: 36px;
  border-top: 1px solid var(--hiraya-line);
}

.related-heading {
  margin-bottom: 34px;
}

.related-heading h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.related-section .catalogue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

.hiraya-footer {
  border-top: 1px solid color-mix(in srgb, var(--hiraya-rose-deep), transparent 55%);
  background: var(--hiraya-rose);
  color: var(--hiraya-paper);
}

.hiraya-footer__main,
.hiraya-footer__legal {
  width: 100%;
  margin: 0 auto;
  padding-right: var(--hiraya-page-gutter);
  padding-left: var(--hiraya-page-gutter);
}

.hiraya-footer__main {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr auto;
  align-items: start;
  padding-top: 54px;
  padding-bottom: 50px;
  gap: 54px;
}

.hiraya-wordmark--footer {
  align-items: flex-start;
  color: var(--hiraya-accent-on-rose);
}

.hiraya-footer__identity p {
  margin: 15px 0 0;
  color: color-mix(in srgb, var(--hiraya-paper), transparent 28%);
  font-size: 13px;
}

.hiraya-footer__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.hiraya-footer__categories a,
.hiraya-footer__instagram {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hiraya-footer__legal a {
  border-bottom: 1px solid currentColor;
  transition: color .25s var(--hiraya-ease);
}

.hiraya-footer__legal a:hover {
  color: var(--hiraya-paper);
}

.hiraya-footer__categories a {
  border-bottom: 1px solid transparent;
}

.hiraya-footer__categories a:hover {
  border-color: color-mix(in srgb, var(--hiraya-paper), transparent 25%);
}

.hiraya-footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.hiraya-footer__instagram i {
  font-size: 20px;
}

.hiraya-footer__legal {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid color-mix(in srgb, var(--hiraya-paper), transparent 76%);
  color: color-mix(in srgb, var(--hiraya-paper), transparent 36%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .hiraya-nav {
    grid-template-columns: auto 1fr;
  }

  .hiraya-nav > .hiraya-nav__primary,
  .hiraya-nav > .hiraya-nav__social {
    display: none;
  }

  .hiraya-nav > .hiraya-wordmark {
    grid-column: 1;
    justify-self: start;
    align-items: flex-start;
  }

  .hiraya-menu-toggle {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .hiraya-mobile-menu {
    position: fixed;
    inset: var(--hiraya-header-height) 0 0;
    display: block;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
  }

  .hiraya-mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgb(43 38 37 / .2);
    opacity: 0;
    backdrop-filter: blur(8px);
    transition: opacity .32s var(--hiraya-ease);
  }

  .hiraya-mobile-menu__panel {
    position: relative;
    z-index: 1;
    width: min(50vw, 520px);
    min-width: 380px;
    height: 100%;
    overflow-y: auto;
    padding: clamp(34px, 5vw, 58px) clamp(24px, 4vw, 42px);
    background: var(--hiraya-paper);
    box-shadow: 18px 0 46px rgb(43 38 37 / .08);
    transform: translateX(-102%);
    transition: transform .38s var(--hiraya-ease);
  }

  .hiraya-mobile-menu__nav {
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }

  .hiraya-mobile-menu__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    border: 0;
    font-size: clamp(20px, 2.4vw, 27px);
    font-weight: 400;
    letter-spacing: -.025em;
  }

  .hiraya-mobile-menu__nav i {
    color: var(--hiraya-rose);
    font-size: 21px;
  }

  .hiraya-mobile-menu__nav a.hiraya-mobile-menu__inquiry {
    justify-content: center;
    gap: 12px;
    min-height: 60px;
    margin-top: 24px;
    padding: 14px 22px;
    background: var(--hiraya-rose);
    color: var(--hiraya-paper);
    transition: background-color .2s var(--hiraya-ease), transform .2s var(--hiraya-ease);
  }

  .hiraya-mobile-menu__inquiry i {
    color: inherit;
  }

  .hiraya-mobile-menu__nav a.hiraya-mobile-menu__inquiry:hover,
  .hiraya-mobile-menu__nav a.hiraya-mobile-menu__inquiry:focus-visible {
    background: var(--hiraya-rose-deep);
  }

  .hiraya-mobile-menu__nav a.hiraya-mobile-menu__inquiry:active {
    transform: translateY(1px);
  }

  .hiraya-mobile-menu.is-open {
    visibility: visible;
    z-index: 1;
    pointer-events: auto;
  }

  .hiraya-mobile-menu.is-open .hiraya-mobile-menu__backdrop {
    opacity: 1;
  }

  .hiraya-mobile-menu.is-open .hiraya-mobile-menu__panel {
    transform: translateX(0);
  }

}

@media (max-width: 1050px) {

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

  .editorial-hero__media--still-life {
    display: none;
  }

  .editorial-hero__shade {
    width: 100%;
  }

  .editorial-hero__copy {
    max-width: calc(100% - 40px);
  }

  .hiraya-hero {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    height: clamp(530px, calc(100svh - var(--hiraya-header-height) - 44px), 640px);
    padding: 34px var(--hiraya-gutter) 8px;
    gap: 8px;
  }

  .collection-row--top,
  .collection-row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    gap: 8px;
  }

  .collection-row--bottom {
    margin-top: 8px;
  }

  .collection-heading {
    grid-column: 1 / -1;
    min-height: 280px;
    padding-right: 0;
  }

  .collection-heading h1,
  .collection-heading h2 {
    max-width: 14ch;
  }

  .collection-credentials {
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 28px;
    row-gap: 14px;
  }

  .category-card {
    min-height: 360px;
  }

  .category-card--custom {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .category-card--custom .category-card__illustration {
    right: -7%;
    bottom: -34%;
    width: min(58%, 430px);
  }

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

  .product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
    gap: 48px;
  }

  .hiraya-footer__main {
    grid-template-columns: 1fr 1.35fr;
  }

  .hiraya-footer__instagram {
    grid-column: 2;
  }
}

@media (max-width: 767px) {
  :root {
    --hiraya-header-height: 66px;
  }

  .hiraya-nav {
    padding: 0 16px;
  }

  .hiraya-mobile-menu__panel {
    width: 100%;
    min-width: 0;
    padding: 30px 22px;
  }

  .hiraya-wordmark strong {
    font-size: 21px;
  }

  .editorial-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 100svh;
    min-height: 650px;
    max-height: 860px;
  }

  .editorial-hero__media--portrait img {
    object-position: center 34%;
  }

  .editorial-hero__media--still-life img {
    object-position: center 56%;
  }

  .editorial-hero__shade {
    top: 0;
    width: 100%;
    background: linear-gradient(0deg, rgb(43 38 37 / .38) 0%, transparent 36%);
  }

  .editorial-hero__copy {
    bottom: 20px;
    left: 18px;
    width: max-content;
    max-width: calc(100% - 36px);
  }

  .editorial-hero__copy a {
    min-height: 0;
  }

  .brand-statement {
    min-height: 410px;
    padding: 88px 24px 104px;
  }

  .brand-statement h2 {
    max-width: 27ch;
    font-size: clamp(21px, 6.3vw, 27px);
  }

  .custom-story {
    height: calc(100svh - var(--hiraya-header-height));
    min-height: 680px;
    max-height: 790px;
  }

  .custom-story__image {
    object-position: center 50%;
  }

  .custom-story > h2 {
    top: 26px;
    left: 20px;
    max-width: 15ch;
    font-size: clamp(24px, 7vw, 31px);
  }

  .custom-story__card {
    right: 18px;
    bottom: 18px;
    width: min(318px, calc(100% - 36px));
    padding: 26px;
  }

  .hiraya-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    min-height: 0;
    padding: 24px 16px 8px;
    gap: 8px;
  }

  .hero-panel--primary {
    grid-row: auto;
    min-height: 500px;
    aspect-ratio: 4 / 5;
  }

  .hero-panel--top,
  .hero-panel--bottom {
    min-height: 280px;
    aspect-ratio: 5 / 4;
  }

  .hero-panel h1 {
    max-width: 9ch;
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-panel__copy--primary {
    width: min(76%, 390px);
  }

  .hero-panel__copy--primary > p:not(.hero-panel__eyebrow) {
    font-size: 13px;
  }

  .hero-panel__copy--secondary {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }

  .home-collections {
    padding: 32px 16px 76px;
  }

  .collection-row--top,
  .collection-row--bottom {
    grid-template-columns: 1fr;
  }

  .collection-heading {
    grid-column: 1;
    min-height: 340px;
    padding: 24px clamp(26px, 2.3vw, 38px) 40px;
  }

  .collection-heading h1,
  .collection-heading h2 {
    max-width: 12ch;
  }

  .category-card,
  .category-card--custom {
    grid-column: 1;
    min-height: 320px;
  }

  .category-card__title {
    top: 42px;
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .category-card--rings .category-card__illustration {
    right: -9%;
    bottom: -23%;
    width: min(82%, 320px);
  }

  .category-card--earrings .category-card__illustration {
    right: -2%;
    bottom: -18%;
    width: min(70%, 285px);
  }

  .category-card--necklaces .category-card__illustration {
    right: -4%;
    bottom: -7%;
    width: min(78%, 315px);
  }

  .category-card--bracelets .category-card__illustration {
    right: -6%;
    bottom: -25%;
    width: min(82%, 340px);
  }

  .category-card--custom .category-card__illustration {
    right: -27%;
    bottom: -29%;
    width: min(102%, 370px);
  }

  .collection-credentials {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    gap: 11px;
  }

  .catalogue-page,
  .product-page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .catalogue-intro {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding-top: 54px;
    gap: 14px;
  }

  .catalogue-intro h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .catalogue-intro h1.catalogue-intro__title--compact {
    font-size: clamp(30px, 8.5vw, 42px);
  }

  .catalogue-intro__count {
    margin-bottom: 0;
  }

  .category-filters {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 42px;
  }

  .catalogue-card__copy {
    padding-top: 11px;
  }

  .catalogue-card h2 {
    font-size: 18px;
  }

  .catalogue-card__arrow {
    display: none;
  }

  .product-page {
    padding-top: 28px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-detail__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .product-detail__copy {
    position: static;
    padding-top: 34px;
  }

  .product-detail__copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

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

  .hiraya-footer__main {
    grid-template-columns: 1fr;
    padding: 44px 18px;
    gap: 34px;
  }

  .hiraya-footer__instagram {
    grid-column: auto;
  }

  .hiraya-footer__legal {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 430px) {
  .catalogue-grid,
  .related-section .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-card h2 {
    font-size: 22px;
  }

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

  .hiraya-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

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

  .hiraya-site *,
  .hiraya-site *::before,
  .hiraya-site *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
