:root {
  --ink: #101411;
  --forest-950: #04120f;
  --forest-900: #071b17;
  --forest-850: #0a241e;
  --forest-800: #0d3027;
  --forest-700: #17493c;
  --plum: #614051;
  --plum-deep: #432b37;
  --ivory: #f1ecdf;
  --ivory-soft: #e6dfd0;
  --paper: #f4f0e6;
  --gold: #b89d55;
  --line-light: rgba(241, 236, 223, 0.22);
  --line-dark: rgba(16, 20, 17, 0.2);
  --serif: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ivory);
  background: var(--forest-900);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--forest-900);
  background: var(--ivory);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 3.5vw;
  border-bottom: 1px solid transparent;
  transition: background 280ms ease, border-color 280ms ease, height 280ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(3, 14, 11, 0.72), transparent);
  pointer-events: none;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(4, 18, 15, 0.92);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.wordmark {
  justify-self: start;
  font-family: var(--serif);
  font-size: 1.44rem;
  line-height: 1;
  letter-spacing: 0.32em;
}

.primary-nav {
  display: flex;
  gap: clamp(1.5rem, 2.7vw, 3.2rem);
  align-items: center;
}

.primary-nav a,
.language-toggle,
.shortlist-trigger {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 0.45rem 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.language-toggle,
.shortlist-trigger {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  opacity: 0.8;
}

.shortlist-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.shortlist-count {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(241, 236, 223, 0.54);
  border-radius: 50%;
  font-size: 0.7rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-950);
}

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

.hero-image-wrap {
  z-index: -2;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
  animation: heroReveal 1.5s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 14, 11, 0.96) 0%, rgba(3, 14, 11, 0.72) 37%, rgba(3, 14, 11, 0.06) 68%),
    linear-gradient(0deg, rgba(3, 14, 11, 0.8) 0%, transparent 48%);
}

.hero-copy {
  width: min(48rem, 62vw);
  margin: 0 0 clamp(7rem, 12vh, 10rem) clamp(2rem, 8vw, 8rem);
  animation: copyReveal 1.1s 180ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: rgba(241, 236, 223, 0.72);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: rgba(16, 20, 17, 0.64);
}

.hero h1,
.manifesto h2,
.collection-heading h2,
.chapter-break h2,
.studies-heading h2,
.craft-side h2,
.appointment-panel h2,
.dialog-content h2,
.shortlist-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 8.4vw, 9rem);
  line-height: 0.84;
}

.hero-intro {
  max-width: 36rem;
  margin: 2.4rem 0 0;
  color: rgba(241, 236, 223, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: 2.8rem;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 44px;
  border: 0;
  padding: 0 2.6rem 0 0;
  background: transparent;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link::before,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
}

.text-link::before {
  width: 1.75rem;
  height: 1px;
  transition: width 220ms ease;
}

.text-link::after {
  width: 0.42rem;
  height: 0.42rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.text-link:hover::before {
  width: 2.15rem;
}

.text-link-light::before {
  background: var(--ivory);
}

.text-link-dark {
  color: var(--ink);
}

.text-link-dark::before {
  background: var(--ink);
}

.hero-index {
  position: absolute;
  right: clamp(1.5rem, 3.5vw, 4rem);
  bottom: clamp(6rem, 10vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.hero-index-line {
  width: 1px;
  height: 4.5rem;
  background: rgba(241, 236, 223, 0.48);
}

.scroll-cue {
  position: absolute;
  left: clamp(2rem, 8vw, 8rem);
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(241, 236, 223, 0.64);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 0.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: minmax(3rem, 0.35fr) 1.1fr 0.9fr;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(7rem, 13vw, 13rem) clamp(2rem, 7vw, 8rem);
  color: var(--ink);
  background: var(--paper);
}

.manifesto-number {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.manifesto h2 {
  font-size: clamp(3.1rem, 6vw, 7rem);
  line-height: 0.94;
}

.manifesto-body {
  align-self: end;
  max-width: 33rem;
  padding-bottom: 0.7rem;
  font-size: clamp(1.03rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.manifesto-body p {
  margin: 0;
}

.manifesto-body p + p {
  margin-top: 1.35rem;
}

.collection-section {
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 4vw, 4rem) clamp(8rem, 12vw, 13rem);
  background:
    radial-gradient(circle at 85% 2%, rgba(34, 87, 70, 0.36), transparent 24rem),
    var(--forest-900);
}

.collection-heading {
  display: grid;
  grid-template-columns: 1fr minmax(17rem, 28rem);
  align-items: end;
  gap: 4rem;
  max-width: 105rem;
  margin: 0 auto clamp(3rem, 6vw, 6rem);
}

.collection-heading h2 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7.5vw, 8.2rem);
  line-height: 0.9;
}

.collection-note {
  margin: 0;
  color: rgba(241, 236, 223, 0.64);
  font-size: 1.04rem;
  line-height: 1.7;
}

.filter-bar {
  position: sticky;
  z-index: 15;
  top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 105rem;
  min-height: 70px;
  margin: 0 auto 2.5rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(7, 27, 23, 0.9);
  backdrop-filter: blur(18px);
}

.filter-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-list::-webkit-scrollbar {
  display: none;
}

.filter-button {
  position: relative;
  min-height: 52px;
  border: 0;
  padding: 0;
  color: rgba(241, 236, 223, 0.5);
  background: transparent;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.filter-button::after {
  content: "";
  position: absolute;
  inset: auto 0 -10px;
  height: 1px;
  background: var(--ivory);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.filter-button.is-active {
  color: var(--ivory);
}

.filter-button.is-active::after {
  transform: scaleX(1);
}

.result-count {
  margin: 0 0 0 2rem;
  color: rgba(241, 236, 223, 0.46);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.jewel-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(2.5rem, 5vw, 6rem) clamp(1rem, 2.2vw, 2.4rem);
  max-width: 105rem;
  margin: 0 auto;
}

.jewel-card {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  animation: cardIn 520ms cubic-bezier(0.2, 0.7, 0.25, 1) both;
}

.jewel-card.is-feature {
  grid-column: span 8;
}

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

.jewel-card-main {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.jewel-media {
  position: relative;
  display: block;
  aspect-ratio: 0.8;
  overflow: hidden;
  background: var(--forest-850);
}

.jewel-card.is-feature .jewel-media {
  aspect-ratio: 1.65;
}

.jewel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(241, 236, 223, 0.11);
  pointer-events: none;
}

.jewel-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.25, 1), filter 450ms ease;
}

.jewel-card-main:hover .jewel-media img,
.jewel-card-main:focus-visible .jewel-media img {
  transform: scale(1.028);
  filter: brightness(1.055);
}

.jewel-number {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.jewel-discover {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 236, 223, 0.45);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.jewel-discover svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.jewel-card-main:hover .jewel-discover,
.jewel-card-main:focus-visible .jewel-discover {
  opacity: 1;
  transform: translateY(0);
}

.jewel-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem 1rem;
  padding-top: 1.2rem;
}

.jewel-category {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(241, 236, 223, 0.46);
  font-size: 0.67rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.jewel-title {
  display: block;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.jewel-summary {
  grid-column: 1 / -1;
  max-width: 33rem;
  margin: 0.45rem 0 0;
  color: rgba(241, 236, 223, 0.58);
  font-size: 0.92rem;
}

.card-shortlist {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.card-shortlist svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.card-shortlist.is-selected {
  color: var(--forest-950);
  background: var(--ivory);
  border-color: var(--ivory);
}

.chapter-break {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) 1.2fr;
  background: var(--plum);
  overflow: hidden;
}

.chapter-break-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: clamp(4rem, 8vw, 8rem);
}

.chapter-roman {
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.chapter-break h2 {
  max-width: 7ch;
  font-size: clamp(4.5rem, 9vw, 10rem);
  line-height: 0.82;
}

.chapter-break-copy > p:last-child {
  max-width: 27rem;
  margin: 2.3rem 0 0;
  color: rgba(241, 236, 223, 0.68);
  font-size: 1.05rem;
}

.chapter-break-images {
  position: relative;
  min-height: 88vh;
}

.chapter-break-images img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 2rem 5rem rgba(14, 5, 10, 0.28);
}

.chapter-break-images img:first-child {
  top: 8%;
  right: 5%;
  width: 68%;
  height: 68%;
}

.chapter-break-images img:last-child {
  right: 53%;
  bottom: -7%;
  width: 43%;
  height: 46%;
}

.studies-section {
  padding: clamp(7rem, 12vw, 12rem) 0 clamp(7rem, 10vw, 10rem);
  color: var(--ink);
  background: var(--paper);
}

.studies-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 5rem;
  padding: 0 clamp(2rem, 7vw, 8rem);
  margin-bottom: 4rem;
}

.studies-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.studies-heading h2 {
  max-width: 8ch;
  font-size: clamp(3.7rem, 7vw, 8rem);
  line-height: 0.9;
}

.studies-heading > p:last-child {
  align-self: end;
  max-width: 30rem;
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.study-rail {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0 clamp(2rem, 7vw, 8rem) 1.5rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.study-rail::-webkit-scrollbar {
  display: none;
}

.study-card {
  flex: 0 0 clamp(18rem, 29vw, 31rem);
  margin: 0;
  scroll-snap-align: start;
}

.study-card.study-wide {
  flex-basis: clamp(22rem, 38vw, 41rem);
}

.study-card img {
  height: clamp(27rem, 54vw, 42rem);
  object-fit: cover;
}

.study-card figcaption {
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.rail-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem clamp(2rem, 7vw, 8rem) 0;
}

.rail-controls button {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.rail-controls svg,
.dialog-nav svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.rail-line {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(16, 20, 17, 0.15);
  overflow: hidden;
}

.rail-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 10%;
  background: var(--ink);
  transform-origin: left;
}

.craft-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 90vh;
  background: var(--forest-950);
}

.craft-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 8vw, 9rem);
  background:
    radial-gradient(circle at 13% 15%, rgba(49, 111, 90, 0.32), transparent 18rem),
    linear-gradient(145deg, var(--forest-800), var(--forest-950) 72%);
}

.craft-side::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(241, 236, 223, 0.08);
  pointer-events: none;
}

.craft-side h2 {
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.88;
}

.craft-side > p:last-child {
  max-width: 30rem;
  margin: 2.6rem 0 0;
  color: rgba(241, 236, 223, 0.66);
  font-size: 1.05rem;
  line-height: 1.7;
}

.craft-steps {
  margin: 0;
  padding: clamp(4rem, 7vw, 8rem);
  list-style: none;
  background: var(--ivory);
  color: var(--ink);
}

.craft-steps li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.craft-steps li:first-child {
  border-top: 1px solid var(--line-dark);
}

.craft-steps li > span {
  padding-top: 0.2rem;
  font-family: var(--serif);
  font-size: 1rem;
}

.craft-steps h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  font-weight: 400;
}

.craft-steps p {
  max-width: 34rem;
  margin: 0.65rem 0 0;
  color: rgba(16, 20, 17, 0.66);
}

.appointment-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  background: var(--plum);
}

.appointment-image {
  min-height: 48rem;
  overflow: hidden;
}

.appointment-image img {
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  filter: saturate(0.82) contrast(1.04);
}

.appointment-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.appointment-panel h2 {
  font-size: clamp(4rem, 7.5vw, 8rem);
  line-height: 0.87;
}

.appointment-panel > p:not(.eyebrow) {
  max-width: 33rem;
  margin: 2.4rem 0 0;
  color: rgba(241, 236, 223, 0.73);
  font-size: 1.05rem;
  line-height: 1.7;
}

.appointment-place {
  display: grid;
  gap: 0.25rem;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(241, 236, 223, 0.22);
  border-bottom: 1px solid rgba(241, 236, 223, 0.22);
}

.appointment-place span {
  color: rgba(241, 236, 223, 0.58);
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.appointment-place strong {
  margin: 0.28rem 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
}

.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.85rem 1.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.button-ivory {
  color: var(--plum-deep);
  background: var(--ivory);
}

.button-ivory:hover {
  color: var(--ivory);
  border-color: var(--ivory);
  background: transparent;
}

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

.button-plum:hover {
  color: var(--plum);
  border-color: var(--plum);
  background: transparent;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  align-items: end;
  gap: 2rem;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem) 2rem;
  background: var(--forest-950);
}

.footer-mark {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0.18em;
  line-height: 0.8;
}

.footer-contact {
  display: grid;
  gap: 0.2rem;
  font-size: 0.86rem;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: 0.55rem;
}

.footer-instagram svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-instagram .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-instagram span {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

.footer-instagram:hover span,
.footer-instagram:focus-visible span {
  border-color: currentColor;
}

.site-footer > p {
  margin: 0;
  color: rgba(241, 236, 223, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-legal {
  justify-self: end;
}

dialog {
  max-width: none;
  max-height: none;
  border: 0;
  padding: 0;
}

dialog::backdrop {
  background: rgba(2, 10, 8, 0.82);
  backdrop-filter: blur(8px);
}

.jewel-dialog {
  width: min(94vw, 94rem);
  height: min(91vh, 58rem);
  margin: auto;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.jewel-dialog[open] {
  animation: dialogIn 320ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 1.2rem;
  right: 1.2rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(16, 20, 17, 0.24);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(244, 240, 230, 0.8);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.dialog-close svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.dialog-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  height: 100%;
}

.dialog-visual {
  position: relative;
  min-height: 0;
  background: var(--forest-900);
}

.dialog-visual > img {
  height: 100%;
  object-fit: cover;
}

.dialog-nav {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ivory);
}

.dialog-nav button {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(241, 236, 223, 0.42);
  border-radius: 50%;
  color: inherit;
  background: rgba(4, 18, 15, 0.28);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.dialog-nav span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.dialog-content {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem);
  overflow-y: auto;
}

.dialog-category {
  margin: 0 0 1.15rem;
  color: rgba(16, 20, 17, 0.54);
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.dialog-content h2 {
  font-size: clamp(3.2rem, 5.6vw, 6.6rem);
  line-height: 0.86;
}

.dialog-description {
  max-width: 32rem;
  margin: 2rem 0;
  color: rgba(16, 20, 17, 0.67);
  font-size: 1rem;
  line-height: 1.7;
}

.dialog-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.dialog-fact {
  padding: 1.15rem 1.25rem 1.15rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.dialog-fact:nth-child(even) {
  padding-left: 1.25rem;
  border-left: 1px solid var(--line-dark);
}

.dialog-fact dt {
  margin-bottom: 0.35rem;
  color: rgba(16, 20, 17, 0.5);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dialog-fact dd {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
  margin-top: 2rem;
}

.shortlist-dialog {
  width: min(100%, 35rem);
  height: 100%;
  margin: 0 0 0 auto;
  color: var(--ink);
  background: var(--paper);
  overflow-y: auto;
}

.shortlist-dialog[open] {
  animation: drawerIn 320ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.shortlist-head {
  padding: 5.5rem 3rem 2rem;
}

.shortlist-head h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.shortlist-head > p:last-child {
  max-width: 28rem;
  margin: 1.5rem 0 0;
  color: rgba(16, 20, 17, 0.65);
}

.shortlist-items {
  padding: 0 3rem;
}

.shortlist-item {
  display: grid;
  grid-template-columns: 5.2rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--line-dark);
}

.shortlist-item:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.shortlist-item img {
  width: 5.2rem;
  height: 6.3rem;
  object-fit: cover;
}

.shortlist-item span {
  display: block;
  color: rgba(16, 20, 17, 0.52);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.shortlist-item strong {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.05;
}

.shortlist-item-open {
  min-width: 0;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.shortlist-remove {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  color: rgba(16, 20, 17, 0.55);
  background: transparent;
  font-size: 1.45rem;
  cursor: pointer;
}

.shortlist-empty {
  display: none;
  padding: 3rem;
  border-top: 1px solid var(--line-dark);
  margin: 0 3rem;
  text-align: center;
}

.shortlist-empty.is-visible {
  display: block;
}

.shortlist-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 3rem 3rem;
}

.shortlist-footer[hidden] {
  display: none;
}

@keyframes heroReveal {
  from { transform: scale(1.055); opacity: 0.3; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes copyReveal {
  from { transform: translateY(1.8rem); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes cardIn {
  from { transform: translateY(1rem); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes dialogIn {
  from { transform: translateY(1rem) scale(0.985); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes drawerIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@media (max-width: 1080px) {
  :root { --header-height: 74px; }

  .site-header {
    grid-template-columns: auto 1fr;
    padding: 0 1.5rem;
  }

  .primary-nav {
    display: none;
  }

  .header-actions {
    grid-column: 2;
  }

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

  .manifesto-body {
    grid-column: 2;
    max-width: 39rem;
  }

  .jewel-card {
    grid-column: span 6;
  }

  .jewel-card.is-feature {
    grid-column: span 12;
  }

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

  .craft-side {
    min-height: 70vh;
  }

  .appointment-section {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .footer-legal {
    justify-self: start;
  }

  .dialog-layout {
    grid-template-columns: 1fr 1fr;
  }

  .dialog-content {
    padding: 4rem 2.6rem;
  }
}

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

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
  }

  .wordmark {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
  }

  .header-actions {
    gap: 0.8rem;
  }

  .shortlist-trigger > span:first-child {
    display: none;
  }

  .language-toggle {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 14, 11, 0.98) 0%, rgba(3, 14, 11, 0.56) 52%, rgba(3, 14, 11, 0.12) 100%),
      linear-gradient(90deg, rgba(3, 14, 11, 0.36), transparent 70%);
  }

  .hero-copy {
    width: auto;
    margin: 0 1.35rem 7rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6.4rem);
    line-height: 0.86;
  }

  .hero-intro {
    max-width: 29rem;
    margin-top: 1.5rem;
    font-size: 0.98rem;
  }

  .hero-links {
    gap: 0.4rem 1.5rem;
    margin-top: 1.5rem;
  }

  .hero-index {
    display: none;
  }

  .scroll-cue {
    left: 1.35rem;
    bottom: 1.3rem;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 7rem 1.35rem;
  }

  .manifesto-number {
    display: none;
  }

  .manifesto-body {
    grid-column: 1;
  }

  .manifesto h2 {
    font-size: clamp(3.4rem, 15vw, 5.8rem);
  }

  .collection-section {
    padding: 6rem 1rem 8rem;
  }

  .collection-heading {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-bottom: 3.5rem;
  }

  .collection-heading h2 {
    font-size: clamp(3.4rem, 16vw, 6rem);
  }

  .collection-note {
    max-width: 30rem;
  }

  .filter-bar {
    top: 66px;
    min-height: 62px;
    margin-bottom: 2rem;
  }

  .filter-list {
    gap: 1.3rem;
  }

  .filter-button {
    min-height: 48px;
  }

  .result-count {
    display: none;
  }

  .jewel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem 0.8rem;
  }

  .jewel-card,
  .jewel-card.is-feature {
    grid-column: span 1;
  }

  .jewel-card.is-feature .jewel-media,
  .jewel-media {
    aspect-ratio: 0.76;
  }

  .jewel-number {
    top: 0.75rem;
    left: 0.75rem;
  }

  .jewel-discover {
    display: none;
  }

  .jewel-copy {
    grid-template-columns: 1fr auto;
    padding-top: 0.85rem;
  }

  .jewel-title {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .jewel-summary {
    display: none;
  }

  .card-shortlist {
    width: 2.35rem;
    height: 2.35rem;
  }

  .chapter-break {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .chapter-break-copy {
    padding: 6rem 1.35rem 4rem;
  }

  .chapter-break h2 {
    font-size: clamp(4.2rem, 18vw, 7rem);
  }

  .chapter-break-images {
    min-height: 70vh;
  }

  .chapter-break-images img:first-child {
    top: 3%;
    right: -8%;
    width: 82%;
    height: 68%;
  }

  .chapter-break-images img:last-child {
    right: 45%;
    bottom: 0;
    width: 60%;
    height: 45%;
  }

  .studies-section {
    padding: 7rem 0;
  }

  .studies-heading {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 0 1.35rem;
  }

  .studies-heading h2 {
    font-size: clamp(3.8rem, 17vw, 6.6rem);
  }

  .study-rail {
    padding: 0 1.35rem 1rem;
  }

  .study-card,
  .study-card.study-wide {
    flex-basis: min(79vw, 24rem);
  }

  .study-card img {
    height: min(112vw, 34rem);
  }

  .rail-controls {
    padding: 1.5rem 1.35rem 0;
  }

  .craft-side {
    min-height: 72vh;
    padding: 6rem 1.35rem;
  }

  .craft-side h2 {
    font-size: clamp(4rem, 18vw, 6.5rem);
  }

  .craft-steps {
    padding: 3rem 1.35rem;
  }

  .craft-steps li {
    grid-template-columns: 2.3rem 1fr;
    gap: 0.8rem;
  }

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

  .appointment-image {
    min-height: 60vh;
  }

  .appointment-panel {
    padding: 6rem 1.35rem;
  }

  .appointment-panel h2 {
    font-size: clamp(4rem, 18vw, 6.5rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 5rem 1.35rem 2rem;
  }

  .footer-legal {
    justify-self: start;
  }

  .jewel-dialog {
    width: 100%;
    height: 100%;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 48vh 1fr;
    overflow-y: auto;
  }

  .dialog-visual {
    min-height: 48vh;
  }

  .dialog-content {
    overflow: visible;
    padding: 3rem 1.35rem 4rem;
  }

  .dialog-content h2 {
    font-size: clamp(3.3rem, 16vw, 5.5rem);
  }

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

  .dialog-fact:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .dialog-close {
    position: fixed;
  }

  .shortlist-head,
  .shortlist-items,
  .shortlist-footer {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .shortlist-empty {
    margin: 0 1.35rem;
    padding: 2.5rem 0;
  }

  .shortlist-item {
    grid-template-columns: 4.2rem 1fr auto;
    gap: 0.8rem;
  }

  .shortlist-item img {
    width: 4.2rem;
    height: 5.2rem;
  }
}

@media (max-width: 430px) {
  .jewel-grid {
    gap: 3rem 0.65rem;
  }

  .jewel-category {
    font-size: 0.6rem;
  }

  .jewel-title {
    font-size: 1.26rem;
  }
}

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

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