:root {
  --ink: #241814;
  --paper: #f6efe5;
  --paper-deep: #eddfcf;
  --ruby: #a61f2b;
  --ruby-dark: #6e1421;
  --teal: #006d6f;
  --teal-dark: #004c4f;
  --gold: #e5a924;
  --coral: #e6694d;
  --line: rgba(36, 24, 20, .18);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pad: clamp(1.25rem, 4vw, 5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: .18;
  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='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

::selection {
  color: var(--paper);
  background: var(--ruby);
}

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

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 88px;
  padding: 0 var(--pad);
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: .28em;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav a,
.site-footer nav a {
  position: relative;
}

.site-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

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

.header-cta {
  justify-self: end;
  padding: .72rem 1rem;
  border: 1px solid var(--ink);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}

.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: min(900px, 100svh);
  padding-top: 88px;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
}

.hero-copy {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: clamp(8rem, 15vh, 11rem) var(--pad) 3.5rem;
  flex-direction: column;
  justify-content: center;
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  right: -13rem;
  bottom: -17rem;
  width: 34rem;
  height: 34rem;
  content: "";
  border: 1px solid rgba(166, 31, 43, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(166, 31, 43, .05), 0 0 0 7rem rgba(166, 31, 43, .04);
}

.eyebrow {
  display: flex;
  margin: 0 0 1.5rem;
  align-items: center;
  gap: .7rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 2.25rem;
  height: 1px;
  background: var(--ruby);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.5vw, 7.6rem);
  font-weight: 400;
  line-height: .85;
  letter-spacing: -.055em;
}

.hero h1 em,
.section h2 em {
  color: var(--ruby);
  font-weight: 400;
}

.hero-intro {
  max-width: 36rem;
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  margin-top: 2.25rem;
  align-items: center;
  gap: 1.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  padding: .9rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

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

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ruby);
}

.button-outline {
  border: 1px solid var(--ink);
}

.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.text-link {
  position: relative;
  padding: .6rem 0;
  border-bottom: 1px solid var(--ink);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: .5rem;
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateX(.3rem);
}

.hero-note {
  display: flex;
  margin-top: auto;
  padding-top: 2rem;
  align-items: center;
  gap: .8rem;
}

.hero-note svg {
  width: 36px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ruby);
  stroke-width: 1.5;
}

.hero-note p {
  margin: 0;
  color: rgba(36, 24, 20, .7);
  font-size: .72rem;
  line-height: 1.5;
  letter-spacing: .04em;
}

.hero-note strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #bf6a4f;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(25, 13, 7, .1), transparent 25%, transparent 75%, rgba(25, 13, 7, .2));
  pointer-events: none;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(.2, .8, .2, 1);
}

.hero-visual:hover img {
  transform: scale(1.015);
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 1.75rem;
  left: 2rem;
  display: flex;
  margin: 0;
  padding-top: .8rem;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .65);
  color: white;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.image-stamp {
  position: absolute;
  z-index: 2;
  top: 7.4rem;
  right: 1.6rem;
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: white;
}

.image-stamp span {
  position: absolute;
  inset: 8px;
  font-size: .44rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  word-spacing: 9px;
}

.image-stamp b {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

.ribbon {
  overflow: hidden;
  padding: .9rem 0;
  color: var(--paper);
  background: var(--ruby);
  white-space: nowrap;
}

.ribbon > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.25rem;
  animation: ticker 26s linear infinite;
}

.ribbon span {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.ribbon i {
  color: var(--gold);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) var(--pad);
}

.section-heading {
  display: grid;
  margin-bottom: 3.75rem;
  align-items: end;
  grid-template-columns: 1.25fr .75fr;
  gap: 3rem;
}

.section-heading h2,
.catalog h2,
.contact h2 {
  font-size: clamp(3.4rem, 6vw, 6.5rem);
}

.section-heading > p {
  max-width: 30rem;
  margin: 0 0 .4rem auto;
  color: rgba(36, 24, 20, .72);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.collection-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: clamp(430px, 47vw, 660px);
  padding: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  isolation: isolate;
}

.collection-card > p {
  margin: 0;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.collection-card > div:not(.motif) {
  margin-top: auto;
}

.collection-card h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5vw, 6rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.055em;
}

.collection-card > div span {
  display: block;
  max-width: 13rem;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.35;
}

.collection-card > a {
  display: flex;
  margin-top: 2.2rem;
  padding-top: .9rem;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .55);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection-card > a span {
  transition: transform .25s ease;
}

.collection-card > a:hover span {
  transform: translate(.25rem, -.25rem);
}

.card-ruby {
  background: var(--ruby);
}

.card-teal {
  background: var(--teal);
}

.card-gold {
  color: var(--ink);
  background: var(--gold);
}

.card-gold > a {
  border-color: rgba(36, 24, 20, .5);
}

.motif {
  position: absolute;
  z-index: -1;
  opacity: .38;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.collection-card:hover .motif {
  transform: rotate(8deg) scale(1.04);
}

.motif-sun {
  top: 7%;
  right: -25%;
  width: 95%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  box-shadow: 0 0 0 1.4rem transparent, 0 0 0 1.5rem rgba(255,255,255,.35), 0 0 0 3rem transparent, 0 0 0 3.1rem rgba(255,255,255,.25), 0 0 0 4.5rem transparent, 0 0 0 4.6rem rgba(255,255,255,.18);
}

.motif-sun::before,
.motif-sun::after {
  position: absolute;
  inset: 18%;
  content: "";
  border: 1px solid white;
  transform: rotate(45deg);
}

.motif-sun::after {
  transform: rotate(22.5deg);
}

.motif-arch {
  top: 5%;
  left: 10%;
  width: 80%;
  height: 58%;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50% 50% 0 0;
  box-shadow: inset 0 0 0 2rem transparent, inset 0 0 0 2.1rem rgba(255,255,255,.35), inset 0 0 0 4.1rem transparent, inset 0 0 0 4.2rem rgba(255,255,255,.2);
}

.motif-arch::after {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 35%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
}

.motif-flower {
  top: 9%;
  right: 8%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(36,24,20,.55);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, transparent 0 14deg, rgba(36,24,20,.28) 14deg 16deg);
}

.motif-flower::after {
  position: absolute;
  inset: 25%;
  content: "";
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
}

.story {
  display: grid;
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--teal-dark);
  grid-template-columns: .72fr 1.28fr;
  gap: 4rem;
}

.story::after {
  position: absolute;
  right: -12%;
  bottom: -48%;
  width: 55vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255,255,255,.025), 0 0 0 8rem rgba(255,255,255,.02);
}

.story-mark {
  display: flex;
  grid-row: span 2;
  min-height: 540px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  flex-direction: column;
  gap: 1rem;
}

.story-mark svg {
  width: min(55%, 220px);
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
}

.story-mark span {
  color: rgba(255,255,255,.55);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.eyebrow-light > span {
  background: var(--gold);
}

.story-copy h2 {
  color: var(--paper);
  font-size: clamp(3.4rem, 5.5vw, 6.3rem);
}

.story-copy h2 em {
  color: var(--gold);
}

.story-body {
  display: grid;
  margin-top: 3.5rem;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.story-body p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.story-body .story-lead {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.text-link-light {
  width: fit-content;
  margin-top: 1.6rem;
  border-color: var(--paper);
}

.story-values {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: end;
  grid-column: 2;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.25);
}

.story-values > div {
  padding: 1.3rem 1.2rem 0 0;
}

.story-values span {
  color: var(--gold);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.story-values p {
  max-width: 12rem;
  margin: .75rem 0 0;
  color: rgba(255,255,255,.62);
  font-family: var(--serif);
  font-size: .95rem;
}

.story-values strong {
  color: var(--paper);
  font-weight: 400;
}

.catalog {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 740px;
  place-items: center;
  text-align: center;
  background: var(--paper-deep);
}

.catalog::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .25;
  background-image: linear-gradient(rgba(36,24,20,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(36,24,20,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.catalog-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 850px;
  align-items: center;
  flex-direction: column;
}

.catalog-content .eyebrow {
  justify-content: center;
}

.catalog-content > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 2rem auto 0;
  color: rgba(36,24,20,.7);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.catalog-actions {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  gap: .75rem;
}

.catalog-content small {
  margin-top: 1.1rem;
  color: rgba(36,24,20,.55);
  font-size: .68rem;
}

.catalog-orbit {
  position: absolute;
  border: 1px solid rgba(166,31,43,.22);
  border-radius: 50%;
}

.orbit-one {
  width: min(75vw, 900px);
  aspect-ratio: 1;
}

.orbit-two {
  width: min(54vw, 650px);
  aspect-ratio: 1;
  border-color: rgba(0,109,111,.25);
}

.catalog-badge {
  position: absolute;
  z-index: 3;
  top: 14%;
  right: 9%;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ruby);
  font-size: .57rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .13em;
  transform: rotate(9deg);
}

.contact {
  background: var(--gold);
}

.contact .eyebrow > span {
  background: var(--ink);
}

.contact-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr .55fr .85fr;
  gap: 3rem;
}

.contact h2 em {
  color: var(--ruby);
}

.contact-grid > p {
  margin: 0 0 .5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
}

.contact-links a {
  display: grid;
  padding: 1.15rem 0;
  align-items: center;
  grid-template-columns: 5.5rem 1fr auto;
  border-bottom: 1px solid rgba(36,24,20,.45);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.contact-links a:first-child {
  border-top: 1px solid rgba(36,24,20,.45);
}

.contact-links span {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-links b {
  transition: transform .25s ease;
}

.contact-links a:hover b {
  transform: translate(.25rem, -.25rem);
}

.site-footer {
  overflow: hidden;
  padding: 4.5rem var(--pad) 0;
  color: var(--paper);
  background: var(--ink);
}

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

.brand-footer {
  align-self: start;
}

.footer-top > p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.site-footer nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .8rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  padding: 1.1rem 0;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.45);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-wordmark {
  margin: 1rem 0 -4vw;
  font-family: var(--serif);
  font-size: clamp(7.5rem, 22.5vw, 25rem);
  line-height: .75;
  letter-spacing: -.07em;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  z-index: 15;
  right: 1.15rem;
  bottom: 1.15rem;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  color: white;
  background: #167a58;
  box-shadow: 0 8px 24px rgba(20,70,50,.28);
  transition: transform .25s ease, background .25s ease;
}

.whatsapp-float:hover {
  background: #0e5e42;
  transform: translateY(-3px) rotate(-4deg);
}

.whatsapp-float svg {
  width: 23px;
  fill: currentColor;
}

/* Policies */
.policy-page {
  background: var(--paper);
}

.policy-header {
  position: sticky;
  color: var(--paper);
  background: var(--ink);
}

.policy-header .header-cta {
  color: var(--paper);
  border-color: rgba(255,255,255,.45);
}

.policy-header .site-nav {
  color: var(--paper);
}

.policy-main {
  padding: 9rem var(--pad) 7rem;
}

.policy-intro {
  display: grid;
  padding: 4rem 0 5rem;
  align-items: end;
  grid-template-columns: 1.25fr .75fr;
  border-bottom: 1px solid var(--line);
  gap: 3rem;
}

.policy-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.06em;
}

.policy-intro h1 em {
  color: var(--ruby);
  font-weight: 400;
}

.policy-intro p {
  max-width: 30rem;
  margin: 0;
  color: rgba(36,24,20,.66);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.policy-layout {
  display: grid;
  padding-top: 4rem;
  grid-template-columns: 240px minmax(0, 720px);
  justify-content: space-between;
  gap: 5rem;
}

.policy-nav {
  position: sticky;
  top: 8rem;
  display: flex;
  align-self: start;
  flex-direction: column;
}

.policy-nav a {
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.policy-section {
  padding: 1rem 0 5rem;
  scroll-margin-top: 7rem;
  border-bottom: 1px solid var(--line);
}

.policy-section + .policy-section {
  padding-top: 5rem;
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section h2 {
  margin: 0 0 .5rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.policy-section > span {
  display: block;
  margin-bottom: 2.5rem;
  color: rgba(36,24,20,.5);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.policy-section h3 {
  margin: 2.25rem 0 .65rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.policy-section p,
.policy-section li {
  color: rgba(36,24,20,.72);
  font-size: .94rem;
  line-height: 1.75;
}

.policy-section ul {
  padding-left: 1.2rem;
}

.policy-note {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(229,169,36,.1);
}

.not-found {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 100svh;
  padding: 2rem var(--pad);
  justify-content: space-between;
  color: var(--paper);
  background: var(--ruby-dark);
  flex-direction: column;
  isolation: isolate;
}

.not-found::before {
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -28vw;
  width: min(75vw, 900px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgba(255,255,255,.035), 0 0 0 10vw rgba(255,255,255,.025);
}

.not-found > div {
  margin: auto 0;
}

.not-found h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
}

.not-found h1 em {
  color: var(--gold);
  font-weight: 400;
}

.not-found > div > p:not(.eyebrow) {
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.not-found .button-dark {
  color: var(--ink);
  background: var(--paper);
}

.not-found-mark {
  position: absolute;
  right: 8%;
  bottom: 5%;
  color: rgba(255,255,255,.09);
  font-family: var(--serif);
  font-size: clamp(14rem, 40vw, 35rem);
  line-height: .7;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header .site-nav {
    display: none;
  }

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

  .hero-copy {
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.3vw, 6rem);
  }

  .collection-card {
    min-height: 520px;
  }

  .story {
    grid-template-columns: .55fr 1.45fr;
  }

  .story-body {
    grid-template-columns: 1fr;
  }

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

  .contact-grid > p {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 1.25rem;
  }

  .site-header {
    position: absolute;
    height: 72px;
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    color: inherit;
    background: transparent;
    flex-direction: column;
    gap: 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-header .site-nav {
    position: fixed;
    z-index: 11;
    inset: 0;
    display: flex;
    padding: 7rem 1.5rem 3rem;
    align-items: flex-start;
    color: var(--paper);
    background: var(--ruby-dark);
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .site-header .site-nav a {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -.03em;
    text-transform: none;
  }

  .site-header:has(.menu-toggle[aria-expanded="true"]) {
    position: fixed;
    color: var(--paper);
    border-color: rgba(255,255,255,.2);
  }

  .site-header:has(.menu-toggle[aria-expanded="true"]) .brand {
    position: relative;
    z-index: 12;
  }

  .menu-toggle[aria-expanded="true"] + .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 650px;
    padding: 5rem var(--pad) 2rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.25rem);
  }

  .hero-intro {
    max-width: 29rem;
    font-size: 1.08rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: .8rem;
  }

  .hero-note {
    margin-top: 3rem;
  }

  .hero-visual {
    min-height: 118vw;
  }

  .image-stamp {
    top: 1.5rem;
  }

  .ribbon > div {
    gap: 1.5rem;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading h2,
  .catalog h2,
  .contact h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .section-heading > p {
    margin: 0;
  }

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

  .collection-card {
    min-height: 470px;
  }

  .collection-card h3 {
    font-size: 4.75rem;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-mark {
    min-height: 390px;
    grid-row: auto;
  }

  .story-copy h2 {
    font-size: clamp(3.35rem, 14vw, 4.7rem);
  }

  .story-body {
    margin-top: 2.5rem;
    gap: 1.25rem;
  }

  .story-values {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .story-values > div {
    display: grid;
    padding: 1rem 0;
    align-items: baseline;
    grid-template-columns: 3rem 1fr;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .story-values p {
    max-width: none;
    margin: 0;
  }

  .catalog {
    min-height: 720px;
  }

  .catalog-actions {
    width: 100%;
    flex-direction: column;
  }

  .catalog-badge {
    top: 5%;
    right: 4%;
    width: 88px;
    height: 88px;
  }

  .orbit-one {
    width: 140vw;
  }

  .orbit-two {
    width: 105vw;
  }

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

  .contact-grid > p {
    display: block;
  }

  .contact-links a {
    grid-template-columns: 4.8rem 1fr auto;
    font-size: .92rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }

  .footer-top > p {
    text-align: right;
  }

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

  .footer-wordmark {
    margin-top: 2rem;
    font-size: 25vw;
  }

  .policy-header .menu-toggle {
    color: var(--paper);
  }

  .policy-main {
    padding-top: 6rem;
  }

  .policy-intro {
    padding: 3rem 0;
    grid-template-columns: 1fr;
  }

  .policy-layout {
    padding-top: 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .policy-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
  }
}

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

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