:root {
  --paper: #f8f6f1;
  --paper-soft: #f0ede6;
  --paper-deep: #e3dfd6;
  --ink: #292a27;
  --ink-soft: #5f605b;
  --line: rgba(41, 42, 39, 0.15);
  --brick: #9c3d2a;
  --brick-dark: #7f2f1f;
  --sage: #416161;
  --sage-soft: #c6e9e9;
  --gold: #f5ce53;
  --white: #fff;
  --max-width: 1440px;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.cart-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5.6rem);
}

h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

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

.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;
}

.section-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.section-space {
  padding-top: clamp(6rem, 11vw, 11rem);
  padding-bottom: clamp(6rem, 11vw, 11rem);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button,
.text-link,
.cart-button,
.filter-button,
.custom-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--brick);
  color: var(--white);
}

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

.button-secondary {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(156, 61, 42, 0.35);
  color: var(--ink-soft);
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--brick);
  color: var(--brick);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  min-height: 5rem;
  padding: 0.6rem var(--page-pad);
  border-bottom: 1px solid rgba(41, 42, 39, 0.08);
  background: rgba(248, 246, 241, 0.86);
  box-shadow: 0 20px 45px rgba(41, 42, 39, 0.04);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand img {
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 3rem);
}

.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: var(--brick);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--ink);
}

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

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.55rem;
  padding: 0.7rem 0 0.7rem 0.9rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-button span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 0.65rem;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.65rem;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 0.42rem 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(28rem, 1.28fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding-top: clamp(3rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 1.8rem;
  font-size: clamp(4.2rem, 7.8vw, 9.5rem);
  line-height: 0.82;
}

.hero-copy h1 em {
  color: var(--brick);
  font-weight: 400;
}

.hero-intro {
  max-width: 34rem;
  margin-bottom: 2.4rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.hero-art {
  position: relative;
  display: block;
  align-self: start;
  min-height: 0;
  overflow: visible;
  background: transparent;
}

.hero-art > img {
  display: block;
  height: auto;
  min-height: 0;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.hero-art-caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 40px rgba(41, 42, 39, 0.08);
  backdrop-filter: blur(18px);
  font-size: 0.78rem;
}

.hero-art-caption > span:first-child {
  display: grid;
  gap: 0.05rem;
}

.hero-art-caption b {
  font-size: 0.88rem;
}

.hero-art-caption small {
  color: var(--ink-soft);
}

.hero-note {
  position: absolute;
  bottom: 1.4rem;
  left: var(--page-pad);
  display: flex;
  gap: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note span + span::before {
  margin-right: 1.35rem;
  color: var(--brick);
  content: "•";
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.7rem);
  align-items: start;
}

.product-grid-featured {
  grid-template-columns: 1.25fr 0.75fr 0.9fr;
}

.product-card {
  min-width: 0;
  transition: opacity 250ms ease, transform 250ms ease;
}

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

.product-card-offset {
  margin-top: clamp(3rem, 7vw, 8rem);
}

.product-media {
  --media-pad: clamp(0.45rem, 1.1vw, 0.85rem);
  position: relative;
  display: grid;
  overflow: visible;
  aspect-ratio: 4 / 5;
  padding: var(--media-pad);
  place-items: center;
  background: transparent;
  isolation: isolate;
}

.product-card-large .product-media,
.product-media.product-media-tall {
  aspect-ratio: 4 / 5.5;
}

.product-media-portrait {
  aspect-ratio: 3 / 4.2;
}

.product-media .product-card__image,
.product-media .product-ambient {
  object-fit: contain;
  transition: transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 180ms ease;
}

.product-media .product-card__image {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 20px 45px rgba(41, 42, 39, 0.12);
}

.catalogue-grid .product-ambient {
  position: absolute;
  z-index: 0;
  inset: calc(var(--media-pad) - 4%);
  width: calc(100% - (var(--media-pad) * 2) + 8%);
  height: calc(100% - (var(--media-pad) * 2) + 8%);
  max-width: none;
  filter: blur(clamp(10px, 1vw, 18px)) saturate(1.25);
  opacity: 0.5;
  pointer-events: none;
}

.product-media:hover .product-card__image {
  transform: scale(1.015);
}

.collection-theme .product-card:hover .product-card__image {
  box-shadow:
    0 0 0 1px var(--collection-accent),
    0 22px 50px rgba(41, 42, 39, 0.18),
    0 0 42px color-mix(in srgb, var(--collection-accent) 24%, transparent);
}

.collection-theme .product-card:hover .product-meta h2,
.collection-theme .product-card:hover .product-meta h3 {
  color: var(--collection-accent-strong);
  text-decoration: underline;
  text-decoration-color: var(--collection-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

@media (hover: hover) {
  .catalogue-grid .product-media:hover .product-ambient {
    opacity: 0.6;
    transform: scale(1.015);
  }
}

.product-index {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  background: rgba(248, 246, 241, 0.78);
  backdrop-filter: blur(12px);
  font-size: 0.62rem;
  font-weight: 700;
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
}

.product-meta h2,
.product-meta h3 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.product-meta > p {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  white-space: nowrap;
}

.collection-band {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--paper-soft);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}

.collection-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 21rem;
  padding: 1rem 2rem 1rem 0;
}

.collection-intro h2 {
  max-width: 8ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.collection-link {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: transform 250ms ease;
}

.collection-link:hover {
  transform: translateY(-5px);
}

.collection-link > span {
  margin-bottom: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.collection-link strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.collection-link small {
  max-width: 18ch;
  margin-top: 0.45rem;
  line-height: 1.45;
}

.collection-link-brick {
  background: #eaa08f;
  color: #4c130a;
}

.collection-link-sage {
  background: var(--sage-soft);
  color: #294747;
}

.collection-link-gold {
  background: var(--gold);
  color: #584500;
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.72fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.studio-image {
  min-height: 0;
  margin: 0;
  background: transparent;
}

.studio-image img {
  display: block;
  height: auto;
  min-height: 0;
  object-fit: cover;
  box-shadow: none;
}

.studio-copy h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 5.3vw, 5.9rem);
}

.studio-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.studio-facts {
  margin: 2.4rem 0;
}

.studio-facts div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.studio-facts dt {
  color: var(--ink-soft);
}

.studio-facts dd {
  margin: 0;
  font-weight: 600;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
}

.closing-cta .eyebrow {
  grid-column: 1 / -1;
}

.closing-cta h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 0.7fr 0.7fr;
  gap: 3rem;
  align-items: start;
}

.brand-footer {
  color: var(--white);
}

.footer-grid > p {
  max-width: 28rem;
  color: rgba(248, 246, 241, 0.58);
}

.footer-grid nav {
  display: grid;
  gap: 0.55rem;
}

.footer-grid nav a {
  color: rgba(248, 246, 241, 0.7);
  transition: color 180ms ease;
}

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

.footer-meta {
  text-align: right;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  align-items: end;
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.collection-theme {
  --collection-accent: var(--brick);
  --collection-accent-strong: var(--brick);
  --collection-accent-soft: rgba(156, 61, 42, 0.09);
  --collection-accent-line: rgba(156, 61, 42, 0.32);
}

.collection-theme--london {
  --collection-accent: #eaa08f;
  --collection-accent-strong: #9c3d2a;
  --collection-accent-soft: rgba(234, 160, 143, 0.16);
  --collection-accent-line: rgba(156, 61, 42, 0.32);
}

.collection-theme--black-and-white {
  --collection-accent: #c6e9e9;
  --collection-accent-strong: #416161;
  --collection-accent-soft: rgba(198, 233, 233, 0.34);
  --collection-accent-line: rgba(65, 97, 97, 0.28);
}

.collection-theme--nature {
  --collection-accent: #f5ce53;
  --collection-accent-strong: #8a6b00;
  --collection-accent-soft: rgba(245, 206, 83, 0.22);
  --collection-accent-line: rgba(138, 107, 0, 0.26);
}

.page-hero > .eyebrow {
  align-self: start;
  padding-top: 0;
}

.page-hero.collection-theme > .eyebrow {
  color: var(--collection-accent-strong);
}

.page-hero.collection-theme::after {
  width: min(16rem, 46vw);
  height: 1px;
  background: linear-gradient(90deg, var(--collection-accent), transparent);
  content: "";
}

.active-collection-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: -0.25rem 0 1.2rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--collection-accent-line);
  background: var(--collection-accent-soft);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.active-collection-chip__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--collection-accent);
  box-shadow: 0 0 0 0.22rem var(--collection-accent-soft);
}

.page-hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  line-height: 0.86;
}

.page-hero > div p {
  max-width: min(100%, 78rem);
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.catalogue-section {
  padding-bottom: clamp(6rem, 11vw, 11rem);
}

.catalogue-toolbar {
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalogue-toolbar .eyebrow {
  margin: 0;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.filter-button {
  padding: 0.65rem 0.9rem;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--ink);
  color: var(--white);
}

.collection-filter--london.is-active,
.collection-filter--london:hover {
  background: #eaa08f;
  color: #4c130a;
}

.collection-filter--black-and-white.is-active,
.collection-filter--black-and-white:hover {
  background: #c6e9e9;
  color: #294747;
}

.collection-filter--nature.is-active,
.collection-filter--nature:hover {
  background: #f5ce53;
  color: #584500;
}

.catalogue-count {
  justify-self: end;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}

.catalogue-grid .product-card:nth-child(3n + 2) {
  margin-top: clamp(2rem, 5vw, 6rem);
}

.catalogue-help {
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.8fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(6rem, 10vw, 10rem);
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--paper-soft);
}

.catalogue-help.collection-theme {
  border-left: 0.28rem solid var(--collection-accent);
  background: linear-gradient(135deg, var(--collection-accent-soft), var(--paper-soft));
}

.catalogue-help.collection-theme .eyebrow {
  color: var(--collection-accent-strong);
}

.catalogue-help.collection-theme .button-secondary {
  background: var(--collection-accent-strong);
}

.catalogue-help h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.catalogue-help > .eyebrow {
  margin-bottom: 0;
}

.catalogue-help > p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.breadcrumbs {
  display: flex;
  gap: 0.65rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--brick);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.72fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.product-gallery {
  min-width: 0;
}

.product-image-stage {
  position: relative;
  display: grid;
  min-height: min(72vh, 760px);
  place-items: center;
  overflow: visible;
  padding: 0;
  background: transparent;
}

.product-image {
  max-width: 100%;
  max-height: min(63vh, 660px);
  object-fit: contain;
  box-shadow: none;
  transition: transform 550ms ease, object-position 550ms ease;
}

.product-image[data-mode="detail-left"] {
  transform: scale(1.55);
  transform-origin: 20% 55%;
}

.product-image[data-mode="detail-right"] {
  transform: scale(1.55);
  transform-origin: 80% 55%;
}

.image-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 0.75rem;
  background: rgba(248, 246, 241, 0.78);
  backdrop-filter: blur(12px);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 6.5rem);
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  background: var(--paper-deep);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 180ms ease;
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  opacity: 1;
}

.gallery-thumb::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  content: "";
}

.gallery-thumb.is-active::after {
  border-color: var(--brick);
}

.gallery-thumb img {
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-left img {
  transform: scale(1.8);
  transform-origin: left center;
}

.gallery-thumb-right img {
  transform: scale(1.8);
  transform-origin: right center;
}

.product-summary {
  position: sticky;
  top: 7rem;
  min-width: 0;
  align-self: start;
}

.product-detail-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-top: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.product-detail-info .product-accordions {
  margin-top: 0;
}

.product-detail-info #custom-print-request {
  margin-top: 0;
}

.product-summary h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 1.12;
}

.product-price {
  margin-bottom: 1.6rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
}

.product-description {
  max-width: 37rem;
  margin-bottom: 2.5rem;
  color: var(--ink-soft);
}

.product-form {
  display: grid;
  gap: 2rem;
}

.product-form fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

.product-form legend {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-form legend small {
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 500;
}

.option-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.option-list-compact {
  grid-template-columns: 1fr;
}

.option-card {
  position: relative;
  display: flex;
  min-height: 5.4rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.9rem;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.option-card:has(input:checked) {
  background: var(--paper-soft);
  box-shadow: inset 0 0 0 2px var(--brick);
}

.option-card input {
  position: absolute;
  opacity: 0;
}

.option-card span {
  display: grid;
}

.option-card b {
  font-size: 0.76rem;
}

.option-card small,
.option-card strong {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 500;
}

.option-list-compact .option-card {
  min-height: auto;
  align-items: center;
}

.add-to-cart {
  width: 100%;
  min-height: 4rem;
}

.custom-link {
  margin-top: -0.9rem;
  color: var(--ink-soft);
  text-align: center;
  text-transform: none;
}

.custom-link span {
  color: var(--brick);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.product-accordions {
  margin-top: 2.2rem;
}

.product-accordions details {
  border-top: 1px solid var(--line);
}

.product-accordions details:last-child {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  list-style: none;
  text-transform: uppercase;
}

.product-accordions summary > span {
  flex: 0 0 auto;
  margin-left: 1rem;
}

.product-accordions summary::-webkit-details-marker {
  display: none;
}

.product-accordions details[open] summary span {
  transform: rotate(45deg);
}

.product-accordions summary span {
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.product-accordions details div {
  max-width: none;
  padding: 0 2rem 1.2rem 0;
  color: var(--ink-soft);
}

.product-accordions details div p {
  margin-bottom: 0;
}

.product-accordions h2 {
  max-width: 18ch;
  margin-top: 1.4rem;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.05;
}

.product-accordions h2:first-child {
  margin-top: 0;
}

.product-story {
  padding: clamp(6rem, 11vw, 11rem) 0;
  background: var(--sage);
  color: #f2f1e9;
}

.product-story-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.product-story .eyebrow,
.product-story-grid > div:last-child {
  color: rgba(242, 241, 233, 0.68);
}

.product-story h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.product-story-grid > div:last-child {
  align-self: end;
  font-size: 1.06rem;
}

.related .section-heading h2 {
  max-width: none;
}

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

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(20, 21, 19, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 30rem);
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(20, 21, 19, 0.16);
  transform: translateX(102%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header,
.cart-drawer-footer {
  padding: 1.35rem;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 2rem;
}

.cart-close,
.cart-remove {
  padding: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-close {
  font-size: 1.5rem;
  line-height: 1;
}

.cart-items {
  overflow-y: auto;
  padding: 1.35rem;
}

.cart-empty {
  display: grid;
  height: 100%;
  place-content: center;
  color: var(--ink-soft);
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 5.8rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  height: 6rem;
  object-fit: cover;
}

.cart-line h3 {
  margin-bottom: 0.35rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
}

.cart-line p {
  margin-bottom: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.4;
}

.cart-line-price {
  margin-top: 0.55rem;
  color: var(--ink) !important;
  font-weight: 700;
}

.cart-remove {
  color: var(--ink-soft);
  font-size: 0.65rem;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.cart-drawer-footer {
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cart-drawer-footer .button {
  width: 100%;
}

.cart-note {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: center;
}

.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 110;
  max-width: min(24rem, calc(100% - 2.5rem));
  padding: 0.95rem 1.1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .primary-nav {
    gap: 1.4rem;
    margin-right: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr 1.12fr;
    gap: 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 8vw, 7rem);
  }

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

  .collection-intro {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .collection-intro h2 {
    max-width: 10ch;
  }

  .studio-section {
    gap: 4rem;
  }

  .product-detail {
    grid-template-columns: 1fr 0.75fr;
    gap: 3rem;
  }

  .product-summary h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
  }

  .option-list {
    grid-template-columns: 1fr;
  }

  .option-card {
    min-height: auto;
  }
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    inset: 5rem 0 auto;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 1.4rem var(--page-pad) 2rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 30px 55px rgba(41, 42, 39, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-open .menu-toggle > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-open .menu-toggle > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

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

  .hero-copy h1 {
    max-width: 10ch;
  }

  .hero-art {
    min-height: 0;
  }

  .hero-art > img {
    min-height: 0;
  }

  .hero-note {
    position: static;
    grid-column: 1;
    flex-wrap: wrap;
  }

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

  .product-grid-featured .product-card-large {
    grid-column: 1 / -1;
    width: 72%;
  }

  .product-card-offset,
  .catalogue-grid .product-card:nth-child(3n + 2) {
    margin-top: 0;
  }

  .studio-section,
  .page-hero,
  .product-detail,
  .product-story-grid {
    grid-template-columns: 1fr;
  }

  .studio-image,
  .studio-image img {
    min-height: 0;
  }

  .closing-cta {
    grid-template-columns: 1fr;
  }

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

  .footer-meta {
    text-align: left;
  }

  .page-hero > .eyebrow {
    padding-top: 0;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .catalogue-toolbar {
    grid-template-columns: 1fr auto;
  }

  .catalogue-toolbar .eyebrow {
    display: none;
  }

  .filter-list {
    justify-content: flex-start;
  }

  .catalogue-help {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

  .product-detail-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .product-image-stage {
    min-height: 36rem;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 1rem;
  }

  body {
    font-size: 14px;
  }

  .site-header {
    min-height: 4.6rem;
  }

  .brand span {
    display: none;
  }

  .brand-footer span {
    display: inline;
  }

  .primary-nav {
    inset: 4.6rem 0 auto;
  }

  .cart-button {
    padding-left: 0.4rem;
    font-size: 0;
    letter-spacing: 0;
  }

  .cart-button::before {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    content: "Bag";
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.8rem, 19vw, 6.2rem);
  }

  .hero-art,
  .hero-art > img {
    min-height: 0;
  }

  .hero-art-caption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .hero-note {
    gap: 0.7rem;
  }

  .hero-note span + span::before {
    margin-right: 0.7rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid,
  .product-grid-featured,
  .catalogue-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-grid-featured .product-card-large {
    width: auto;
  }

  .product-media,
  .product-card-large .product-media,
  .product-media.product-media-tall,
  .product-media-portrait {
    aspect-ratio: 4 / 5;
  }

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

  .collection-link {
    min-height: 16rem;
  }

  .studio-image,
  .studio-image img {
    min-height: 0;
  }

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

  .page-hero {
    gap: 1.5rem;
  }

  .page-hero h1 {
    margin-bottom: 0.9rem;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .catalogue-toolbar {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .catalogue-count {
    justify-self: start;
  }

  .filter-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }

  .filter-button {
    padding-inline: 0.35rem;
    font-size: 0.58rem;
  }

  .product-image-stage {
    min-height: 26rem;
    padding: 1.5rem;
  }

  .product-image {
    max-height: 22rem;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-summary h1 {
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }

  .product-form legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .cart-drawer {
    width: 100%;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* WordPress and WooCommerce integration */

.brand {
  width: clamp(10rem, 15vw, 13.5rem);
}

.brand img,
.brand .custom-logo {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.brand-footer img {
  filter: grayscale(1) invert(1) brightness(2);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(0.45rem, 1.5vw, 1rem);
}

.primary-nav__list,
.footer-links {
  display: flex;
  align-items: center;
  gap: inherit;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ov-currency-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.ov-currency-switcher__link {
  padding: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ov-currency-switcher__link.is-active {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.product-placeholder {
  display: block;
  width: 100%;
  min-height: 24rem;
  background: linear-gradient(135deg, var(--paper-deep), var(--paper-soft));
}

.product-card__image {
  object-fit: contain;
}

.journal-card__media img {
  height: 100%;
  object-fit: cover;
}

.product-meta .price,
.product-price .price {
  color: inherit;
}

.catalogue-count .woocommerce-result-count {
  margin: 0;
}

.pagination {
  padding-top: 4rem;
  text-align: center;
}

.pagination .nav-links {
  display: inline-flex;
  gap: 0.35rem;
}

.pagination .page-numbers {
  display: grid;
  min-width: 2.8rem;
  min-height: 2.8rem;
  place-items: center;
  padding: 0.5rem;
  border: 1px solid var(--line);
}

.pagination .current,
.pagination a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.empty-state,
.not-found {
  padding-top: clamp(6rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 12vw, 12rem);
  text-align: center;
}

.empty-state h2,
.not-found h1 {
  max-width: 14ch;
  margin-inline: auto;
}

.not-found .button-row {
  justify-content: center;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 3vw, 3rem);
}

.journal-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.4rem;
  background: var(--paper-deep);
}

.journal-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.journal-card > p:last-child {
  color: var(--ink-soft);
}

/* Editorial articles */

.editorial-entry {
  padding-top: clamp(3.5rem, 7vw, 7rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.entry-header,
.entry-content,
.comments-area {
  width: min(100%, 800px);
  margin-inline: auto;
}

.entry-header {
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.entry-header .eyebrow {
  margin-bottom: 0.9rem;
  color: var(--brick);
}

.entry-header h1 {
  max-width: 13ch;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  font-size: clamp(2.8rem, 5.4vw, 5.35rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.entry-hero-media,
.entry-header figure {
  width: min(1120px, calc(100vw - (2 * var(--page-pad))));
  margin: 0 50%;
  transform: translateX(-50%);
  background: var(--paper-soft);
}

.entry-hero-media img,
.entry-header figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  image-rendering: auto;
}

.entry-content {
  color: var(--ink);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.78;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.15em;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content p,
.entry-content li {
  color: var(--ink);
}

.entry-content .ov-article {
  display: contents;
}

.entry-content .ov-standfirst,
.entry-content > p:first-child {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.entry-content h2,
.entry-content h3 {
  max-width: 13ch;
  color: var(--ink);
  text-wrap: balance;
}

.entry-content h2 {
  margin-top: clamp(3.4rem, 6vw, 5.5rem);
  margin-bottom: 0.8em;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.048em;
}

.entry-content h3 {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.55em;
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.entry-content a {
  color: var(--brick);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.entry-content a:hover {
  color: var(--brick-dark);
}

.entry-content strong {
  color: var(--ink);
  font-weight: 700;
}

.entry-content img {
  height: auto;
  margin-block: 2rem;
}

.entry-content .ov-article-figure,
.entry-content .wp-block-image {
  margin: clamp(2.5rem, 6vw, 5rem) 50%;
  width: min(980px, calc(100vw - (2 * var(--page-pad))));
  transform: translateX(-50%);
}

.entry-content .ov-article-figure img,
.entry-content .wp-block-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--paper-soft);
}

.entry-content .ov-callout,
.entry-content .ov-card,
.entry-content .ov-final-cta,
.entry-content blockquote {
  border: 1px solid rgba(41, 42, 39, 0.12);
  background: var(--paper-soft);
  color: var(--ink);
}

.entry-content .ov-callout {
  margin: clamp(2.2rem, 5vw, 4rem) 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 4px solid var(--brick);
}

.entry-content .ov-callout > :last-child,
.entry-content .ov-card > :last-child,
.entry-content .ov-final-cta > :last-child,
.entry-content blockquote > :last-child {
  margin-bottom: 0;
}

.entry-content .ov-callout h2,
.entry-content .ov-callout h3,
.entry-content .ov-card h2,
.entry-content .ov-card h3,
.entry-content .ov-final-cta h2,
.entry-content .ov-final-cta h3 {
  max-width: 16ch;
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.05;
}

.entry-content .ov-callout p,
.entry-content .ov-callout li,
.entry-content .ov-card p,
.entry-content .ov-card li,
.entry-content .ov-final-cta p,
.entry-content .ov-final-cta li,
.entry-content blockquote p {
  color: var(--ink);
}

.entry-content .ov-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
  width: min(1080px, calc(100vw - (2 * var(--page-pad))));
  margin: clamp(2rem, 5vw, 4rem) 50%;
  transform: translateX(-50%);
}

.entry-content .ov-card {
  padding: clamp(1.15rem, 2vw, 1.7rem);
}

.entry-content .ov-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.entry-content .ov-card-grid > .wp-block-image,
.entry-content .ov-card-grid > figure {
  width: auto;
  margin: 0;
  transform: none;
  border: 1px solid rgba(41, 42, 39, 0.1);
  background: var(--paper-soft);
}

.entry-content .ov-card-grid > .wp-block-image img,
.entry-content .ov-card-grid > figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.entry-content .ov-card-grid figcaption {
  margin: 0;
  padding: 0.75rem 0.9rem 0.95rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.entry-content .ov-card-grid > figure h3,
.entry-content .ov-card-grid > figure p {
  padding-inline: 0.9rem;
}

.entry-content .ov-table,
.entry-content .wp-block-table {
  overflow-x: auto;
  width: min(1040px, calc(100vw - (2 * var(--page-pad))));
  margin: clamp(2rem, 5vw, 4rem) 50%;
  transform: translateX(-50%);
}

.entry-content table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
  padding: 1rem;
  border-bottom: 1px solid rgba(41, 42, 39, 0.12);
  text-align: left;
  vertical-align: top;
}

.entry-content th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-content td {
  color: var(--ink);
}

.entry-content blockquote {
  margin: clamp(2.2rem, 5vw, 4rem) 0;
  padding: clamp(1.3rem, 3vw, 2.1rem);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.entry-content .ov-final-cta {
  margin: clamp(3rem, 7vw, 6rem) 50% 0;
  width: min(980px, calc(100vw - (2 * var(--page-pad))));
  padding: clamp(1.5rem, 4vw, 3rem);
  transform: translateX(-50%);
  border-left: 4px solid var(--brick);
  background: linear-gradient(135deg, rgba(156, 61, 42, 0.1), var(--paper-soft));
}

.entry-content .ov-final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.entry-content .ov-button,
.entry-content .wp-block-button__link {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  background: var(--brick);
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-content .ov-button:hover,
.entry-content .wp-block-button__link:hover {
  background: var(--brick-dark);
  color: var(--white);
}

@media (max-width: 820px) {
  .editorial-entry {
    padding-top: 2.6rem;
  }

  .entry-header,
  .entry-content,
  .comments-area {
    width: min(100%, 680px);
  }

  .entry-header h1 {
    max-width: 12.5ch;
    font-size: clamp(2.35rem, 10.5vw, 3.55rem);
    line-height: 1.04;
    letter-spacing: -0.047em;
  }

  .entry-hero-media,
  .entry-header figure,
  .entry-content .ov-article-figure,
  .entry-content .wp-block-image,
  .entry-content .ov-table,
  .entry-content .wp-block-table,
  .entry-content .ov-final-cta {
    width: calc(100vw - 2rem);
  }

  .entry-hero-media img,
  .entry-header figure img {
    max-height: none;
  }

  .entry-content h2 {
    max-width: 12ch;
    font-size: clamp(1.85rem, 8.6vw, 2.85rem);
    line-height: 1.08;
  }

  .entry-content h3 {
    font-size: clamp(1.35rem, 6vw, 2rem);
    line-height: 1.08;
  }

  .entry-content .ov-card-grid {
    grid-template-columns: 1fr;
    width: calc(100vw - 2rem);
  }

  .entry-content table {
    min-width: 560px;
  }
}

/* WooCommerce system pages */

.entry-content > .woocommerce,
main > .woocommerce,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  width: min(100% - (2 * var(--page-pad)), 1180px);
  margin: clamp(4rem, 8vw, 8rem) auto;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1rem 1rem 1rem 3rem;
  border-top: 2px solid var(--sage);
  background: var(--paper-soft);
  color: var(--ink);
}

.woocommerce-error {
  border-color: var(--brick);
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 1rem;
  border-color: var(--line);
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  padding: 1.5rem;
}

.woocommerce-checkout #payment {
  border-radius: 0;
  background: var(--paper-soft);
}

.woocommerce-MyAccount-navigation {
  padding: 1rem;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.wc-block-components-totals-wrapper,
.wc-block-components-order-summary,
.wc-block-components-sidebar {
  border-color: var(--line) !important;
}

@media (max-width: 1100px) {
  .brand {
    width: 10.5rem;
  }

  .ov-currency-switcher {
    display: none;
  }
}

@media (max-width: 820px) {
  .brand {
    width: 11rem;
  }

  .primary-nav__list {
    display: grid;
  }

  .header-actions {
    gap: 0.2rem;
  }

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

  .product-detail {
    padding-top: 1rem;
  }
}

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

  .brand span {
    display: initial;
  }

  .journal-grid,
  .ov-inquiry__grid {
    grid-template-columns: 1fr;
  }

  .ov-inquiry__full {
    grid-column: auto;
  }

  .product-form .woocommerce-variation-add-to-cart,
  .product-form form.cart:not(.variations_form),
  .search-form {
    align-items: stretch;
    flex-direction: column;
  }

  .product-form .quantity {
    width: 100%;
  }

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


/* P2 polish 2026-06-07: contact reference, landscape visibility, palette nav, clearer logo, live variation price */
.site-header {
  background:
    linear-gradient(90deg, rgba(234, 160, 143, 0.16), rgba(198, 233, 233, 0.16) 48%, rgba(245, 206, 83, 0.16)),
    rgba(248, 246, 241, 0.9);
}

.brand img {
  filter: saturate(1.12) contrast(1.04) brightness(1.06);
}

.primary-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
}

.primary-nav__list > li:nth-child(1) > a:hover,
.primary-nav__list > li:nth-child(1).current-menu-item > a {
  background: rgba(234, 160, 143, 0.45);
  color: #4c130a;
}

.primary-nav__list > li:nth-child(2) > a:hover,
.primary-nav__list > li:nth-child(2).current-menu-item > a {
  background: rgba(234, 160, 143, 0.62);
  color: #4c130a;
}

.primary-nav__list > li:nth-child(3) > a:hover,
.primary-nav__list > li:nth-child(3).current-menu-item > a {
  background: rgba(198, 233, 233, 0.82);
  color: #294747;
}

.primary-nav__list > li:nth-child(4) > a:hover,
.primary-nav__list > li:nth-child(4).current-menu-item > a {
  background: rgba(245, 206, 83, 0.78);
  color: #584500;
}

.primary-nav__list > li:nth-child(5) > a:hover,
.primary-nav__list > li:nth-child(5).current-menu-item > a {
  background: rgba(65, 97, 97, 0.16);
  color: var(--sage);
}

.primary-nav__list > li:nth-child(6) > a:hover,
.primary-nav__list > li:nth-child(6).current-menu-item > a {
  background: rgba(41, 42, 39, 0.08);
  color: var(--ink);
}

.primary-nav a::after {
  display: none;
}

.hero-art,
.product-media-landscape {
  background: transparent;
}

.hero-art > img {
  object-fit: contain;
}

.product-media-landscape {
  aspect-ratio: 4 / 3;
}

.product-card-large .product-media-landscape,
.product-media.product-media-landscape.product-media-tall {
  aspect-ratio: 4 / 3;
}

.product-media-landscape:hover img {
  transform: scale(1.015);
}

.product-price.is-updated {
  color: var(--brick);
  transition: color 180ms ease;
}

body.page-id-10 .editorial-entry,
body.page-template-default .editorial-entry:has(.ov-contact-form) {
  width: min(100%, var(--max-width));
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

body.page-id-10 .entry-header,
body.page-template-default .editorial-entry:has(.ov-contact-form) .entry-header {
  width: min(100%, 1180px);
}

body.page-id-10 .entry-header .eyebrow,
body.page-template-default .editorial-entry:has(.ov-contact-form) .entry-header .eyebrow {
  margin-left: 0;
}

body.page-id-10 .entry-header h1,
body.page-template-default .editorial-entry:has(.ov-contact-form) .entry-header h1 {
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  line-height: 0.86;
  margin-bottom: 1.25rem;
}

body.page-id-10 .entry-content,
body.page-template-default .editorial-entry:has(.ov-contact-form) .entry-content {
  width: min(100%, 1180px);
}

.ov-contact-form {
  margin-top: 0;
  padding: clamp(1.5rem, 3.2vw, 2.5rem);
  background: rgba(240, 237, 230, 0.74);
  box-shadow: inset 0 0 0 1px rgba(41, 42, 39, 0.035);
}

.ov-contact-form .ov-inquiry__grid {
  gap: 1.15rem 1.35rem;
  margin-block: 0 1.5rem;
}

.ov-contact-form label {
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.ov-contact-form input,
.ov-contact-form select,
.ov-contact-form textarea {
  min-height: 4.25rem;
  border-color: rgba(41, 42, 39, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 35px rgba(41, 42, 39, 0.035);
}

.ov-contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.ov-contact-form .ov-button {
  min-height: 2.8rem;
  padding: 0.45rem 0.8rem !important;
  border: 1px solid var(--ink) !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
  text-transform: none;
}

.ov-contact-form .ov-button:hover {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

@media (max-width: 560px) {
  .product-media-landscape,
  .product-card-large .product-media-landscape,
  .product-media.product-media-landscape.product-media-tall {
    aspect-ratio: 4 / 3;
  }

  body.page-id-10 .entry-header h1,
  body.page-template-default .editorial-entry:has(.ov-contact-form) .entry-header h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .ov-contact-form input,
  .ov-contact-form select,
  .ov-contact-form textarea {
    min-height: 3.7rem;
  }
}
