:root {
  --ink: #2c251b;
  --paper: #f5efe5;
  --paper-deep: #e7dccd;
  --milk: #fffaf2;
  --moss: #596549;
  --clay: #9f6a43;
  --shadow: rgba(22, 17, 11, 0.42);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}

body.page {
  min-height: 100vh;
  background: var(--milk);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(22px, 4vw, 56px);
  color: var(--milk);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 239, 229, 0.92);
  box-shadow: 0 14px 40px rgba(44, 37, 27, 0.08);
  backdrop-filter: blur(16px);
}

.page-header {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.92rem;
}

.desktop-nav a:not(.nav-button) {
  padding: 10px 0;
}

.desktop-nav .is-active {
  border-bottom: 1px solid currentColor;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid currentColor;
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-button {
  color: var(--ink);
  background: var(--milk);
  border-color: var(--milk);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  background: rgba(255, 250, 242, 0.08);
}

.language-switch button {
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  line-height: 1;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--ink);
  background: var(--milk);
}

.page-header .language-switch button.is-active,
.site-header.is-scrolled .language-switch button.is-active {
  color: var(--milk);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 91vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #3b3023;
}

.hero__image,
.menu-panel__photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 28, 18, 0.76) 0%, rgba(36, 28, 18, 0.42) 36%, rgba(36, 28, 18, 0.08) 72%),
    url("assets/hero.jpg?v=20260531-2") center / cover no-repeat;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 241, 209, 0.18), transparent 32%),
    linear-gradient(0deg, rgba(15, 12, 8, 0.42), transparent 44%);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 20, 14, 0.28), transparent 64%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(670px, calc(100% - 44px));
  margin-left: clamp(22px, 7vw, 128px);
  padding-top: 70px;
  color: var(--milk);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 6.2vw, 6.8rem);
  line-height: 0.98;
}

.hero__copy {
  max-width: 500px;
  margin-bottom: 34px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button--light {
  color: var(--ink);
  background: var(--milk);
  border-color: var(--milk);
}

.button--ghost {
  color: var(--milk);
  background: rgba(255, 250, 242, 0.04);
  border-color: rgba(255, 250, 242, 0.72);
}

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

.category-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 42px clamp(22px, 6vw, 96px);
  background: var(--paper);
}

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(44, 37, 27, 0.72), rgba(89, 101, 73, 0.36)),
    var(--paper-deep);
}

.category-card img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.category-card img.is-missing {
  opacity: 0;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 28, 18, 0.52), rgba(36, 28, 18, 0.08));
}

.category-card span {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 40px;
  color: var(--milk);
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.category-card span::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 18px;
  background: currentColor;
}

.category-card:hover img {
  transform: scale(1.04);
}

.objects-section,
.story-band,
.journal-preview,
.shop-band {
  padding: clamp(64px, 8vw, 118px) clamp(22px, 8vw, 136px);
}

.objects-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.9fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
  background:
    radial-gradient(circle at 0% 12%, rgba(159, 106, 67, 0.08), transparent 28%),
    var(--milk);
}

.objects-intro {
  position: sticky;
  top: 112px;
}

.objects-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(2.9rem, 4vw, 5rem);
  line-height: 1.06;
}

.objects-intro > span {
  display: block;
  width: 52px;
  height: 1px;
  margin-bottom: 34px;
  background: rgba(44, 37, 27, 0.6);
}

.objects-intro p {
  max-width: 360px;
  margin-bottom: 26px;
  line-height: 1.75;
}

.objects-intro .signature {
  margin-top: clamp(46px, 8vw, 100px);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.45;
}

.objects-intro .signature small {
  font-family: var(--sans);
  font-size: 0.92rem;
}

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

.object-card {
  background: rgba(255, 250, 242, 0.48);
  border: 1px solid rgba(44, 37, 27, 0.13);
}

.object-card img {
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  background:
    linear-gradient(120deg, rgba(44, 37, 27, 0.72), rgba(89, 101, 73, 0.36)),
    var(--paper-deep);
}

.object-card img.is-missing {
  opacity: 0;
}

.object-card div {
  padding: 22px 24px 20px;
}

.object-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  line-height: 1.08;
}

.object-card p {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(44, 37, 27, 0.22);
  font-size: 0.86rem;
  line-height: 1.45;
}

.object-card p span {
  margin: 0 10px;
  color: rgba(44, 37, 27, 0.46);
}

.object-card a {
  display: inline-flex;
  gap: 9px;
  font-size: 0.9rem;
}

.object-card a span {
  color: rgba(44, 37, 27, 0.62);
}

.object-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.object-card--featured > img {
  height: 100%;
  min-height: 420px;
  aspect-ratio: auto;
}

.object-card--featured div {
  display: flex;
  flex-direction: column;
}

.object-card--featured h3 {
  font-size: clamp(2.25rem, 3.2vw, 3.7rem);
}

.object-card .object-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: auto 0 22px;
  padding: 0;
}

.object-card__thumbs img {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.featured-journal {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: stretch;
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(54px, 7vw, 104px) clamp(22px, 8vw, 136px);
  background: #ece2d5;
}

.featured-journal__image img {
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.featured-journal__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}

.featured-journal h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.8vw, 5.8rem);
  line-height: 0.98;
}

.featured-journal p:not(.section-kicker) {
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: end;
  background: var(--milk);
}

.story-band h2,
.section-heading h2,
.shop-band h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 1;
}

.story-band p:not(.section-kicker) {
  margin-bottom: 0;
  font-size: 1.04rem;
  line-height: 1.8;
}

.journal-preview {
  background: #ece2d5;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

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

.journal-grid article {
  min-height: 100%;
  overflow: hidden;
  background: var(--milk);
  border: 1px solid rgba(44, 37, 27, 0.12);
}

.journal-grid img {
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  background:
    linear-gradient(120deg, rgba(44, 37, 27, 0.72), rgba(89, 101, 73, 0.36)),
    var(--paper-deep);
}

.journal-grid article div {
  padding: 28px 30px 32px;
}

.journal-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.journal-grid h3 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.05;
}

.journal-grid p {
  margin-bottom: 18px;
  line-height: 1.65;
}

.journal-grid a {
  display: inline-flex;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
}

.journal-grid__feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.journal-grid__feature img {
  height: 100%;
  aspect-ratio: auto;
}

.shop-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--moss);
  color: var(--milk);
}

.shop-band h2 {
  max-width: 720px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 4vw, 56px);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.about-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.77fr 1.1fr;
  align-items: stretch;
  background:
    radial-gradient(circle at 6% 8%, rgba(159, 106, 67, 0.08), transparent 32%),
    var(--milk);
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(44px, 7vw, 116px) 70px clamp(44px, 7vw, 116px);
}

.about-hero__text > span {
  width: 32px;
  height: 1px;
  margin: 2px 0 36px;
  background: rgba(44, 37, 27, 0.5);
}

.about-hero h1 {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(3.6rem, 5.2vw, 6.5rem);
  line-height: 1.03;
}

.about-hero p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-hero .signature {
  margin-top: 26px;
}

.about-hero__image {
  min-height: 100vh;
  margin-top: 112px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0)),
    url("assets/about.jpg?v=20260531-2") center / cover no-repeat,
    linear-gradient(120deg, rgba(44, 37, 27, 0.72), rgba(89, 101, 73, 0.36));
}

.journal-page {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 2fr);
  gap: 28px;
  min-height: 100vh;
  padding: 130px clamp(28px, 7vw, 132px) 72px;
  background:
    radial-gradient(circle at 0% 8%, rgba(159, 106, 67, 0.08), transparent 32%),
    var(--milk);
}

.journal-intro {
  position: sticky;
  top: 130px;
  align-self: start;
  padding-top: 38px;
}

.journal-intro > span {
  display: block;
  width: 32px;
  height: 1px;
  margin: 0 0 34px;
  background: rgba(44, 37, 27, 0.5);
}

.journal-intro h1 {
  max-width: 380px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 4.8vw, 6rem);
  line-height: 1.02;
}

.journal-intro p:not(.section-kicker) {
  max-width: 370px;
  line-height: 1.78;
}

.journal-sync-note,
.prep-note {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(44, 37, 27, 0.16);
  background: rgba(231, 220, 205, 0.34);
  font-size: 0.92rem;
}

.prep-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prep-note p {
  margin-bottom: 0;
}

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

.journal-card {
  background: rgba(255, 250, 242, 0.5);
  border: 1px solid rgba(44, 37, 27, 0.13);
}

.journal-card:first-child {
  grid-column: span 1;
}

.journal-card img {
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
  background:
    linear-gradient(120deg, rgba(44, 37, 27, 0.72), rgba(89, 101, 73, 0.36)),
    var(--paper-deep);
}

.journal-card img.is-missing {
  opacity: 0;
}

.journal-card div {
  padding: 22px 28px 26px;
}

.journal-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(44, 37, 27, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.journal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 2.1vw, 2.6rem);
  line-height: 1.04;
}

.journal-card p {
  margin-bottom: 24px;
  line-height: 1.62;
}

.journal-card a {
  display: inline-flex;
  gap: 13px;
  font-size: 0.92rem;
}

.journal-card--listing p {
  margin-bottom: 18px;
}

.journal-linked-object {
  display: grid;
  gap: 6px;
  margin: 8px 0 22px;
  padding: 14px 16px;
  border-left: 2px solid var(--clay);
  background: rgba(255, 250, 242, 0.62);
}

.journal-linked-object strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.journal-linked-object small {
  display: block;
  margin-bottom: 0;
  color: rgba(44, 37, 27, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.5;
}

.journal-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  margin-bottom: 28px;
  background: rgba(255, 250, 242, 0.68);
  border: 1px solid rgba(44, 37, 27, 0.13);
}

.journal-feature-card img {
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.journal-feature-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 56px);
}

.journal-feature-card span,
.journal-longform .section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-feature-card h2,
.journal-longform h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.2vw, 5.4rem);
  line-height: 0.98;
}

.journal-feature-card p {
  margin-bottom: 30px;
  line-height: 1.75;
}

.journal-longform {
  margin-bottom: 40px;
  padding: clamp(30px, 4vw, 54px);
  background: rgba(245, 239, 229, 0.62);
  border: 1px solid rgba(44, 37, 27, 0.12);
}

.journal-longform__header {
  max-width: 760px;
  margin-bottom: 32px;
}

.journal-longform__header p:not(.section-kicker),
.journal-longform__body p {
  font-size: 1rem;
  line-height: 1.85;
}

.journal-photo-story,
.journal-detail-grid {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.journal-photo-story {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

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

.journal-photo-story img,
.journal-detail-grid img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.journal-photo-story figure:first-child {
  grid-row: span 2;
}

.journal-photo-story figure:first-child img {
  min-height: 540px;
}

.journal-longform figure {
  margin: 0;
  background: var(--milk);
}

.journal-longform figcaption {
  padding: 12px 14px 14px;
  color: rgba(44, 37, 27, 0.66);
  font-size: 0.8rem;
  line-height: 1.5;
}

.journal-longform__body {
  max-width: 820px;
  margin: 34px auto;
}

.objects-page {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 2fr);
  gap: clamp(38px, 5vw, 78px);
  min-height: 100vh;
  padding: 130px clamp(28px, 6vw, 92px) 72px;
  background:
    radial-gradient(circle at 0% 8%, rgba(159, 106, 67, 0.08), transparent 32%),
    var(--milk);
}

.shop-sidebar {
  position: sticky;
  top: 130px;
  align-self: start;
  padding-top: 22px;
}

.shop-sidebar h1 {
  margin-bottom: 20px;
  font-size: clamp(3.7rem, 5vw, 6.2rem);
  line-height: 0.95;
}

.shop-sidebar > span {
  display: block;
  width: 34px;
  height: 1px;
  margin-bottom: 32px;
  background: rgba(44, 37, 27, 0.62);
}

.shop-sidebar p {
  max-width: 330px;
  line-height: 1.72;
}

.filter-group {
  max-width: 330px;
  margin-top: 58px;
  border-bottom: 1px solid rgba(44, 37, 27, 0.18);
}

.filter-group h2,
.sort-control span {
  display: block;
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
}

.filter-group a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  font-size: 0.95rem;
}

.filter-group a.is-selected {
  background: rgba(44, 37, 27, 0.06);
}

.sort-control {
  display: block;
  max-width: 330px;
  margin-top: 32px;
}

.sort-control select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(44, 37, 27, 0.2);
  color: var(--ink);
  background: transparent;
  font: inherit;
}

.shop-note {
  margin-top: 80px;
}

.shop-content {
  min-width: 0;
}

.object-listing-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(24px, 4vw, 46px);
  margin-bottom: 34px;
  padding: clamp(18px, 2vw, 28px);
  background: rgba(245, 239, 229, 0.7);
  border: 1px solid rgba(44, 37, 27, 0.14);
}

.object-listing-gallery {
  min-width: 0;
}

.object-listing-gallery__main {
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
  background:
    linear-gradient(120deg, rgba(44, 37, 27, 0.72), rgba(89, 101, 73, 0.36)),
    var(--paper-deep);
}

.object-listing-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.object-listing-gallery__thumbs img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--paper-deep);
}

.object-listing-copy {
  min-width: 0;
}

.object-listing-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.4vw, 4.3rem);
  line-height: 1;
}

.object-listing-lede {
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.72;
}

.object-price-box {
  display: grid;
  gap: 7px;
  margin-bottom: 24px;
  padding: 18px 20px;
  color: var(--milk);
  background: var(--ink);
}

.object-price-box strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.object-price-box span {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1;
}

.object-price-box small {
  color: rgba(255, 250, 242, 0.74);
  line-height: 1.5;
}

.object-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  background: rgba(44, 37, 27, 0.16);
  border: 1px solid rgba(44, 37, 27, 0.14);
}

.object-spec-grid div {
  padding: 13px 14px;
  background: rgba(255, 250, 242, 0.78);
}

.object-spec-grid dt,
.object-spec-grid dd {
  margin: 0;
  line-height: 1.45;
}

.object-spec-grid dt {
  margin-bottom: 5px;
  color: rgba(44, 37, 27, 0.58);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.object-spec-grid dd {
  font-size: 0.86rem;
}

.object-condition-note,
.object-story-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(44, 37, 27, 0.16);
}

.object-condition-note h3,
.object-story-note h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.object-condition-note p,
.object-story-note p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.68;
}

.object-listing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.shop-count {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(44, 37, 27, 0.2);
  color: rgba(44, 37, 27, 0.72);
  letter-spacing: 0.08em;
}

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

.shop-card {
  background: rgba(255, 250, 242, 0.5);
  border: 1px solid rgba(44, 37, 27, 0.13);
}

.shop-card img {
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  background:
    linear-gradient(120deg, rgba(44, 37, 27, 0.72), rgba(89, 101, 73, 0.36)),
    var(--paper-deep);
}

.shop-card img.is-missing {
  opacity: 0;
}

.shop-card div {
  padding: 22px 24px 26px;
}

.shop-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 1.8vw, 2.2rem);
  line-height: 1.05;
}

.shop-card p {
  margin-bottom: 20px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.listing-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 14px;
  padding: 0 10px;
  border: 1px solid rgba(89, 101, 73, 0.42);
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-card .card-meta {
  margin-bottom: 14px;
  color: rgba(44, 37, 27, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-card p span {
  margin: 0 9px;
  color: rgba(44, 37, 27, 0.46);
}

.shop-card strong {
  display: block;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 500;
}

.etsy-fields {
  display: grid;
  gap: 1px;
  margin: 20px 0 22px;
  border: 1px solid rgba(44, 37, 27, 0.12);
  background: rgba(44, 37, 27, 0.12);
}

.etsy-fields div {
  display: grid;
  grid-template-columns: 0.72fr 1.4fr;
  gap: 12px;
  padding: 12px 13px;
  background: rgba(255, 250, 242, 0.72);
}

.etsy-fields dt,
.etsy-fields dd {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

.etsy-fields dt {
  color: rgba(44, 37, 27, 0.58);
  font-weight: 600;
  text-transform: uppercase;
}

.etsy-fields dd {
  color: rgba(44, 37, 27, 0.86);
}

.shop-card a {
  display: inline-flex;
  gap: 9px;
  font-size: 0.9rem;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.menu-button__line {
  width: 20px;
  height: 1px;
  background: currentColor;
}

.menu-panel {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background:
    radial-gradient(circle at 56% 4%, rgba(159, 106, 67, 0.08), transparent 34%),
    var(--milk);
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel__photo {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20, 16, 11, 0.38), rgba(20, 16, 11, 0.08) 42%, rgba(20, 16, 11, 0.18)),
    url("assets/hero.jpg?v=20260531-2") center / cover no-repeat;
}

.menu-panel__photo span {
  position: absolute;
  top: clamp(30px, 5vw, 68px);
  left: clamp(28px, 5vw, 82px);
  color: var(--milk);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.menu-panel__links {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(72px, 7vw, 120px) clamp(48px, 11vw, 190px);
}

.language-switch--menu {
  margin-bottom: 30px;
  color: var(--ink);
}

.menu-panel__links a {
  display: grid;
  gap: 14px;
  width: min(330px, 100%);
  padding: 13px 0 19px;
  border-bottom: 0;
}

.menu-panel__links span {
  font-family: var(--serif);
  font-size: clamp(4.1rem, 5.5vw, 7.2rem);
  line-height: 0.84;
}

.menu-panel__links small {
  color: rgba(44, 37, 27, 0.72);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
}

.menu-panel__links a::after {
  content: "";
  width: 86px;
  height: 1px;
  margin-top: 12px;
  background: rgba(44, 37, 27, 0.38);
}

.menu-panel__links a:last-of-type::after {
  display: none;
}

.menu-panel__close {
  position: absolute;
  top: clamp(28px, 4vw, 58px);
  right: clamp(28px, 4vw, 58px);
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1.6rem;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .site-header {
    padding: 20px 22px;
  }

  .page-header {
    position: sticky;
  }

  .hero {
    min-height: 86vh;
  }

  .hero__image {
    background:
      linear-gradient(90deg, rgba(36, 28, 18, 0.78), rgba(36, 28, 18, 0.24)),
      url("assets/hero.jpg?v=20260531-2") 62% center / cover no-repeat;
  }

  .hero__content {
    margin-left: 22px;
    padding-top: 90px;
  }

  h1 {
    font-size: clamp(3.35rem, 15vw, 5.2rem);
  }

  .category-preview,
  .objects-section,
  .object-grid,
  .object-card--featured,
  .featured-journal,
  .journal-grid,
  .journal-grid__feature,
  .story-band,
  .shop-band,
  .menu-panel,
  .about-hero,
  .journal-page,
  .journal-feature-card,
  .journal-photo-story,
  .journal-detail-grid,
  .journal-card-grid,
  .objects-page,
  .object-listing-feature,
  .object-spec-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .etsy-fields div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-hero__text {
    padding: 118px 28px 44px;
  }

  .about-hero h1 {
    font-size: clamp(3.05rem, 15vw, 5rem);
  }

  .about-hero__image {
    min-height: 58vh;
    margin-top: 0;
  }

  .journal-page {
    padding: 112px 22px 52px;
  }

  .journal-intro {
    position: static;
    padding-top: 0;
  }

  .journal-intro h1 {
    font-size: clamp(3.05rem, 15vw, 5rem);
  }

  .shop-sidebar {
    position: static;
    padding-top: 0;
  }

  .filter-group {
    margin-top: 34px;
  }

  .shop-note {
    margin-top: 34px;
  }

  .objects-page {
    padding: 112px 22px 52px;
  }

  .category-preview {
    gap: 16px;
  }

  .story-band,
  .shop-band,
  .section-heading {
    display: block;
  }

  .objects-intro {
    position: static;
    margin-bottom: 34px;
  }

  .objects-intro h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .object-grid {
    gap: 18px;
  }

  .object-card--featured {
    grid-column: auto;
  }

  .object-card--featured > img,
  .featured-journal__image img,
  .journal-feature-card img,
  .journal-photo-story figure:first-child img {
    min-height: 300px;
  }

  .featured-journal {
    padding: 54px 22px;
  }

  .journal-photo-story figure:first-child {
    grid-row: auto;
  }

  .journal-longform {
    padding: 24px 18px;
  }

  .object-listing-feature {
    padding: 14px;
  }

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

  .object-listing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .story-band h2,
  .section-heading h2,
  .shop-band h2 {
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .menu-panel__photo {
    min-height: 28vh;
  }

  .menu-panel__photo span {
    top: 28px;
    left: 28px;
    font-size: 2.7rem;
  }

  .menu-panel__links {
    padding: 80px 34px 48px;
  }

  .language-switch--menu {
    margin-bottom: 22px;
  }

  .menu-panel__links span {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .menu-panel__links a {
    gap: 10px;
    padding: 10px 0 15px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 2rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    width: min(320px, 100%);
  }

  .button {
    width: 100%;
  }

  .category-card,
  .category-card img,
  .object-card img,
  .shop-card img {
    min-height: 180px;
  }

  .category-card span {
    top: 28px;
    left: 28px;
  }

  .journal-grid article {
    min-height: auto;
  }

  .site-footer {
    display: block;
  }
}
