/* Fonts and :root tokens: assets/css/tokens.css (enqueued first). */


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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@view-transition {
  navigation: auto;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(180, 140, 90, 0.12), transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--bg) 40%, var(--bg-soft) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25;
}

.type-display,
.section-head h2,
.section-intro h2,
.page-masthead__title h1,
.page-hero-inner h1,
.about-strip blockquote {
  font-family: var(--font-display);
  font-weight: 500;
}

.type-label,
.section-eyebrow,
.hero-eyebrow,
.site-nav a,
.btn,
.story-pill,
.tile-date,
.story-label,
.footer-heading {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

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

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 96;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  min-height: var(--header-h);
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

@media (min-width: 901px) {
  .site-header {
    backdrop-filter: blur(14px);
  }
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: min(100%, calc(100vw - 5.75rem));
  font-family: var(--font-signature);
  font-size: clamp(1.35rem, 0.7rem + 2.8vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
  padding: 0.2em 0.15em 0.15em 0.05em;
  -webkit-font-smoothing: antialiased;
}

.brand__name,
.hero-brand__name,
.footer-logo__name {
  display: inline-block;
  max-width: 100%;
  transform: rotate(-1.5deg);
  transform-origin: left center;
}

.brand__word {
  display: inline;
  white-space: nowrap;
}

.brand__space {
  white-space: pre;
}

.brand__divider {
  font-family: var(--font-body);
  font-weight: 300;
  opacity: 0.45;
  transform: none;
}

.brand__tag {
  font-family: var(--font-body);
  font-weight: 500;
  opacity: 0.72;
  transform: none;
}

.site-nav {
  justify-self: center;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.5vw, 0.65rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-nav__item a:hover,
.site-nav__item.is-active a,
.site-nav__item.current-menu-item > a,
.site-nav__item.current_page_item > a {
  color: var(--ink);
  background: rgba(20, 20, 20, 0.05);
}

.site-nav__item.is-active a,
.site-nav__item.current-menu-item > a {
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.06);
}

.site-nav__mobile-meta {
  display: none;
}

.site-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.header-tool {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.header-tool:hover {
  color: var(--ink);
  background: var(--bg-warm);
  border-color: transparent;
}

.site-header__social {
  margin-left: 0.15rem;
}

.social {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social a {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
}

.social a:hover {
  opacity: 1;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle__bar {
  position: absolute;
  left: 50%;
  width: 1rem;
  height: 1.5px;
  margin-left: -0.5rem;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), top 0.25s var(--ease);
}

.nav-toggle__bar:first-child {
  top: calc(50% - 4px);
}

.nav-toggle__bar:last-child {
  top: calc(50% + 4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 94;
  border: 0;
  padding: 0;
  background: rgba(10, 10, 10, 0.42);
  cursor: pointer;
}

.nav-backdrop[hidden] {
  display: none;
}

/* Hero — full-bleed photograph, no letterbox fill. */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  align-content: center;
  padding: 1.25rem 0 5.25rem;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  box-sizing: border-box;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 65% at 50% 45%, transparent 20%, rgba(8, 6, 4, 0.38) 100%),
    linear-gradient(180deg, rgba(8, 6, 4, 0.28) 0%, transparent 26%, transparent 68%, rgba(8, 6, 4, 0.45) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  .hero {
    padding: 1rem 0 4.75rem;
  }

  .hero-overlay {
    display: none;
  }

  .hero-media::after {
    background:
      radial-gradient(ellipse 85% 75% at 50% 42%, transparent 15%, rgba(8, 6, 4, 0.42) 100%),
      linear-gradient(180deg, rgba(8, 6, 4, 0.32) 0%, transparent 24%, transparent 70%, rgba(8, 6, 4, 0.5) 100%);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.25rem);
  max-width: 44rem;
  border-radius: 18px;
  background: rgba(8, 6, 4, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-signature);
  font-size: clamp(2.15rem, 1rem + 8.5vw, 5.75rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.18;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  padding: 0.12em 0.2em;
  -webkit-font-smoothing: antialiased;
}

.hero-brand__name {
  display: inline-block;
  max-width: 100%;
  transform: rotate(-1.5deg);
  transform-origin: center;
}

/* Desktop-only: one-shot signature write on homepage load. */
@media (min-width: 901px) {
  .hero-brand.is-signing-pending .hero-brand__name {
    clip-path: inset(-0.28em 100% -0.35em -0.22em);
  }

  .hero-brand.is-signing .hero-brand__name {
    will-change: clip-path;
    animation: hero-signature-write 1.25s cubic-bezier(0.33, 0.05, 0.25, 1) forwards;
  }

  .hero-brand.is-signed .hero-brand__name {
    clip-path: none;
  }
}

@keyframes hero-signature-write {
  from {
    clip-path: inset(-0.28em 100% -0.35em -0.22em);
  }
  to {
    clip-path: inset(-0.28em -0.1em -0.35em -0.22em);
  }
}

.hero-eyebrow {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-content h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-lede {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.96);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-label);
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  transition: opacity 0.25s;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(rgba(255, 255, 255, 0.75), transparent);
  opacity: 0.8;
}

.hero-scroll:hover {
  opacity: 1;
}

/* Stats strip */
.stats-strip {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 0.5rem 0.75rem;
}

.stat-value {
  display: block;
  font-size: var(--text-lead);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-muted);
}

.stats-strip--embedded {
  padding: 1.5rem 0;
  border: 0;
  background: transparent;
}

.widget .stats-strip,
.site-highlights-widget .stats-strip {
  padding: 0.5rem 0 0;
  border: 0;
  background: transparent;
}

.globe-teaser {
  text-align: center;
}

.globe-teaser__title {
  margin: 0 0 0.5rem;
}

.globe-teaser__intro {
  margin: 0 0 0.5rem;
  color: var(--ink-muted);
}

.globe-teaser__count {
  margin: 0 0 1rem;
  font-weight: 600;
}

.globe-teaser--embedded {
  text-align: left;
}

.widget .globe-teaser,
.site-highlights-widget .globe-teaser {
  padding-top: 0.25rem;
}

.about-page__stats {
  margin-top: var(--space-block);
}

.section-eyebrow {
  margin: 0 0 var(--space-tight);
  color: var(--accent);
}

.section-eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.story-pill {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.25rem 0.6rem;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
}

.tile .story-pill {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.story-item .story-pill {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent);
}

.tile-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Print spotlight */
.print-spotlight {
  padding: var(--space-section) clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.spotlight-copy h2 {
  margin: 0 0 0.5rem;
  font-size: var(--text-title);
  font-weight: 600;
}

.spotlight-subtitle {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.spotlight-description {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  color: var(--ink-soft);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.spotlight-price {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.spotlight-visual {
  position: relative;
  min-height: 20rem;
}

.spotlight-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 2px;
}

.spotlight-product {
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  width: min(42%, 11rem);
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.15);
}

/* Commissions band */
.commissions-band {
  padding: var(--space-section) clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.commissions-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1000px;
  margin: 0 auto;
}

.commissions-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-tight);
}

.commissions-inner .section-eyebrow {
  margin: 0;
}

.commissions-inner h2 {
  margin: 0;
  font-size: var(--text-title);
  font-weight: 600;
  line-height: 1.15;
}

.commissions-inner p:last-child {
  margin: var(--space-tight) 0 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: var(--text-lead);
  line-height: 1.7;
}

.commissions-inner .btn {
  flex-shrink: 0;
  align-self: center;
}

.print-spotlight,
.commissions-band {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.6rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: none;
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-solid {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-solid:hover {
  background: transparent;
  color: var(--ink);
}

.btn-cart {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-cart:hover {
  background: transparent;
  color: var(--ink);
}

.btn-cart.is-added {
  background: #2f5d3a;
  border-color: #2f5d3a;
  color: var(--white);
}

/* Section headings */
.section-head,
.section-intro {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head h2,
.section-intro h2 {
  margin: 0 0 var(--space-tight);
  font-size: var(--text-title);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.section-head p,
.section-intro p {
  margin: var(--space-tight) auto 0;
  max-width: 36rem;
  color: var(--ink-muted);
  font-size: var(--text-lead);
  line-height: 1.65;
}

/* Featured masonry (Concept B) */
.featured-collections {
  padding: var(--space-section) var(--page-gutter) var(--space-section-lg);
  max-width: none;
  margin: 0;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.featured-collections .story-row {
  margin-top: 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.featured-collections .section-cta {
  margin-top: var(--space-block);
  text-align: center;
}

.shop--home,
.print-spotlight,
.commissions-band,
.about-strip {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

.masonry {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  min-height: 28rem;
}

.tile {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.tile.is-visible,
.story-item.is-visible,
.story-card.is-visible,
.product.is-visible,
.about-strip.is-visible {
  opacity: 1;
}

.tile-lg {
  grid-row: 1 / span 2;
}

.tile a {
  display: block;
  height: 100%;
  position: relative;
  color: var(--white);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12rem;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.tile:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.tile-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0.9) 100%);
}

.tile-date,
.tile-caption .story-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.story-label {
  display: inline-block;
  margin-bottom: 0;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-soft);
}

.tile-caption h3 {
  margin: 0;
  font-size: var(--text-lead);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.story-item h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.tile-caption p {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.94);
  max-width: 32rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.story-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  margin-top: var(--space-block);
  margin-bottom: var(--space-block);
}

.story-item {
  opacity: 1;
}

.story-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0.85rem;
  background: var(--bg-warm);
}

.story-item:hover img {
  transform: none;
}

.story-item .story-label {
  color: var(--ink-soft);
}

.story-item h3 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.story-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Story grid (Concept A) */
.stories {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}

.story-card {
  opacity: 1;
}

.story-image {
  display: block;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 3 / 2;
  background: var(--bg-soft);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card:hover .story-image img {
  transform: none;
}

.story-body h3 {
  margin: 0 0 0.85rem;
  font-size: var(--text-lead);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

.story-body h3 a:hover {
  opacity: 0.7;
}

.story-meta {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.story-meta img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: cover;
}

.story-meta p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* Shop & product cards */
.shop {
  padding: var(--space-section) clamp(1.25rem, 4vw, 3rem) var(--space-section-lg);
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}

.shop .section-head,
.shop .product-grid,
.shop .section-cta {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.shop .section-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.product-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

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

.product-grid--featured {
  margin-bottom: var(--space-block);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(20, 20, 20, 0.08);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(180deg, #ebe6de 0%, #e2dcd2 100%);
  text-decoration: none;
}

.product-art-frame {
  position: absolute;
  inset: clamp(0.85rem, 2vw, 1.1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(0.55rem, 1.5vw, 0.75rem);
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 8px 24px rgba(20, 20, 20, 0.08);
}

/* Reserve a consistent mat band under the frame so format tags never sit on the photo. */
.product-card__media .product-art-frame {
  inset: clamp(0.75rem, 1.8vw, 1rem) clamp(0.75rem, 1.8vw, 1rem) 2.65rem;
}

.product-art-frame__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  line-height: 0;
}

.product-art-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__format,
.product-single-gallery__format {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 1.65rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 20, 20, 0.06);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink-soft);
  box-shadow: 0 2px 8px rgba(20, 20, 20, 0.06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__format {
  left: clamp(0.75rem, 1.8vw, 1rem);
  bottom: 0.55rem;
}

.product-single-gallery__format {
  left: 0.55rem;
  bottom: 0.55rem;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
  padding: 1rem 1.1rem 1.15rem;
}

.product-card__title {
  margin: 0;
  min-height: 2.7em;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-card__title a:hover {
  color: var(--accent);
}

.product-card__price {
  margin: 0;
  min-height: 1.35em;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
}

.product-card__price .woocommerce-Price-amount {
  color: inherit;
}

.product-card__actions {
  margin-top: auto;
  padding-top: 0.55rem;
}

.product-card__cta,
.product-card__actions .button {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.6rem 1rem;
}

/* Homepage shop */
.shop--home {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 7vw, 4.5rem);
  background: linear-gradient(180deg, var(--bg-warm) 0%, #f7f3ed 55%, var(--white) 100%);
  border-top: 1px solid var(--line);
}

.shop-home-header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.shop-home-head {
  max-width: 40rem;
}

.shop-home-lede {
  margin: 0.75rem 0 0;
  font-size: var(--text-lead);
  color: var(--ink-muted);
  line-height: 1.65;
}

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

.shop-archive-head {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.shop-archive-head h1 {
  margin: 0 0 var(--space-tight);
  font-size: var(--text-title);
}

.shop-archive .dw-breadcrumbs {
  margin-bottom: 0;
}

.shop-filters-wrap {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.shop-archive.is-swapping {
  opacity: 0.78;
  pointer-events: none;
  transition: opacity 0.12s ease;
}

@media (prefers-reduced-motion: reduce) {
  .shop-archive.is-swapping {
    opacity: 1;
    transition: none;
  }
}

@supports (view-transition-name: none) {
  @view-transition {
    navigation: auto;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.22s;
  }
}

.shop-home-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.page-main--shop {
  padding-top: var(--space-block);
  padding-bottom: var(--space-section);
}

.shop-archive {
  max-width: 1180px;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--space-block);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.shop-toolbar .woocommerce-result-count,
.shop-toolbar .woocommerce-ordering {
  margin: 0;
}

.shop-pagination {
  margin-top: var(--space-block);
  margin-bottom: 0;
  text-align: center;
}

.shop-pagination .woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-pagination .woocommerce-pagination a,
.shop-pagination .woocommerce-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  font-size: var(--text-sm);
}

.shop-pagination .woocommerce-pagination span.current {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* About strip (Concept A) */
.about-strip {
  padding: var(--space-section-lg) clamp(1.25rem, 4vw, 3rem);
  background: var(--bg);
  border-top: 1px solid var(--line);
  opacity: 1;
}

.about-strip__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.about-strip blockquote {
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  padding: 0;
  border: 0;
}

.about-strip blockquote p {
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
}

.about-strip cite {
  display: block;
  font-style: normal;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-muted);
}

.about-strip .btn {
  margin-top: 0;
}

/* Inner pages */
.page-main {
  padding: clamp(2.5rem, 6vw, 4rem) var(--page-gutter);
}

.page-main--home {
  padding: 0;
}

.page-main--stories {
  padding: 0 var(--page-gutter);
}

/* Full-bleed masthead/filters inside padded mains so title aligns with content */
.page-main > .page-masthead,
.page-main > .page-hero {
  margin-inline: calc(-1 * var(--page-gutter));
}

.page-main--stories > .story-filters-wrap {
  margin-inline: calc(-1 * var(--page-gutter));
  padding-inline: var(--page-gutter);
}

.content-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.page-header h1,
.single-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.content-wrap-wide {
  max-width: var(--page-max);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Shared horizontal rail: same left edge as page-main + content-wrap-wide */
.page-rail {
  max-width: var(--page-max);
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}

.page-masthead,
.page-hero {
  padding: clamp(1.15rem, 2.5vw, 1.65rem) var(--page-gutter) clamp(1.25rem, 2.5vw, 1.75rem);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
}

.page-masthead__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.page-masthead__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.page-masthead__trail,
.page-masthead__meta {
  width: 100%;
}

.page-masthead__top .dw-breadcrumbs {
  margin: 0;
}

.page-masthead__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem 0.65rem;
  margin: 0;
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

.page-masthead__meta-sep {
  opacity: 0.45;
}

.page-masthead__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: start;
  max-width: 42rem;
  width: 100%;
}

.page-masthead__title h1,
.page-hero-inner h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  line-height: 1.08;
  margin: 0;
}

.page-masthead__eyebrow {
  margin: 0 0 0.35rem;
}

.page-masthead__lede,
.page-hero-lede {
  max-width: 40rem;
  margin: 0;
  font-size: var(--text-lead);
  color: var(--ink-muted);
  line-height: 1.55;
}

.story-filters-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0.55rem 0;
  width: 100%;
  box-sizing: border-box;
}

.story-filters-scroller {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 1.15rem, #000 calc(100% - 1.15rem), transparent);
}

.story-filters-scroller.is-start {
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 1.15rem), transparent);
}

.story-filters-scroller.is-end {
  mask-image: linear-gradient(90deg, transparent, #000 1.15rem, #000 100%);
}

.story-filters-scroller.is-start.is-end {
  mask-image: none;
}

.story-filters-scroller::-webkit-scrollbar {
  display: none;
}

.story-filters {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.4rem;
  width: max-content;
  max-width: none;
  margin: 0;
  padding: 0;
}

.story-filters-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.story-filters-arrow[hidden] {
  display: none;
}

.story-filters-arrow:hover,
.story-filters-arrow:focus-visible {
  border-color: var(--ink);
}

.story-filters-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.story-filter {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.stories-archive {
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.story-card--archive {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.story-card--archive .story-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.story-card--archive .story-read-more {
  margin-top: auto;
  padding-top: 0.85rem;
}

.story-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.story-read-more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
}

.story-read-more:hover {
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--bg-warm);
  border-color: rgba(20, 20, 20, 0.22);
}

.related-stories {
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  background: transparent;
  border-top: 0;
}

.related-stories .section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.related-stories .story-row--related {
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0;
  margin-bottom: 0;
  align-items: stretch;
}

.related-story-card {
  min-width: 0;
}

.related-story-card a {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 5.75rem;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}

.related-story-card a:hover {
  border-color: rgba(20, 20, 20, 0.22);
}

.related-story-card__media {
  display: block;
  flex: 0 0 6.75rem;
  width: 6.75rem;
  background: var(--bg-soft);
  overflow: hidden;
}

.related-story-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  margin: 0;
}

.related-story-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.85rem 0.75rem;
  justify-content: center;
}

.related-story-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.4rem;
}

.related-story-card .story-pill {
  display: none;
}

.related-story-card h3 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.related-story-card__excerpt {
  display: none;
}

.related-stories-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: 0.25rem;
}

.related-stories-load {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  margin: 0;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.3;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.related-stories-load__label {
  display: inline-block;
}

.related-stories-load__icon {
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.75;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.related-stories-load:hover,
.related-stories-load:focus-visible {
  background: var(--bg-warm);
  color: var(--ink);
  border-color: rgba(20, 20, 20, 0.22);
}

.related-stories-load:hover .related-stories-load__icon,
.related-stories-load:focus-visible .related-stories-load__icon {
  transform: translateX(2px);
  opacity: 1;
}

.related-stories-load[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.related-stories-load[aria-busy="true"] .related-stories-load__icon {
  opacity: 0;
}

.related-stories-end {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.related-stories-end a {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.related-stories-end a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (min-width: 900px) {
  .related-stories .story-row--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .related-story-card a {
    flex-direction: column;
    min-height: 0;
  }

  .related-story-card__media {
    flex: none;
    width: auto;
    aspect-ratio: 3 / 2;
  }

  .related-story-card__body {
    padding: 0.85rem 0.95rem 1rem;
    justify-content: flex-start;
  }

  .related-story-card .story-pill {
    display: inline-block;
    margin: 0;
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .related-story-card__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    margin: 0.4rem 0 0;
    padding: 0;
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--ink-muted);
  }
}

/* Homepage section rhythm (lean: hero → stories → shop → places → enquire) */
.page-main--home .featured-collections {
  padding-top: clamp(3.25rem, 7vw, 5rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.25rem);
}

.page-main--home .shop--home {
  padding-top: clamp(2.75rem, 6vw, 4rem);
  padding-bottom: clamp(2.75rem, 6vw, 4rem);
}

.page-main--home .places-home {
  padding-top: clamp(2.5rem, 5.5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 5.5vw, 3.75rem);
}

.page-main--home .shop-home-cta {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.page-main--home .featured-collections .section-cta {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.page-masthead__trail .dw-breadcrumb-list,
.page-masthead__meta {
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

.page-hero-inner .dw-breadcrumbs,
.page-masthead__trail .dw-breadcrumbs {
  margin-bottom: 0;
}

.shop-archive > .dw-breadcrumbs {
  margin-bottom: 1.25rem;
}

.single-header .dw-breadcrumbs {
  margin-bottom: 0.85rem;
}

.dw-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.dw-breadcrumb-item + .dw-breadcrumb-item::before {
  content: "/";
  margin-right: 0.35rem;
  color: var(--ink-muted);
}

.dw-breadcrumb-item a:hover {
  color: var(--ink);
}

/* Shop: sentence case so crumbs match product titles */
.dw-breadcrumbs--shop .dw-breadcrumb-list,
.woocommerce-page .dw-breadcrumb-list {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-transform: none;
  gap: 0.25rem;
}

.dw-breadcrumbs--shop .dw-breadcrumb-item + .dw-breadcrumb-item::before,
.woocommerce-page .dw-breadcrumb-item + .dw-breadcrumb-item::before {
  margin-right: 0.4rem;
  margin-left: 0.15rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(10, 10, 10, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1200px, 100%);
  text-align: center;
}

.lightbox-image {
  max-width: min(1200px, 100%);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-caption {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav--prev {
  left: 1rem;
}

.lightbox-nav--next {
  right: 1rem;
}

.lightbox-nav[hidden] {
  display: none;
}

.empty-state {
  text-align: center;
  color: var(--ink-muted);
  padding: 3rem 0;
}

/* WooCommerce */
.woocommerce-page .page-title {
  display: none;
}

.woocommerce ul.products,
.related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product-card-item {
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product-card-item .product-card {
  flex: 1;
}

.woocommerce-page .woocommerce-ordering select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  background: var(--white);
}

.woocommerce-page--single .single-product-wrap {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 4rem;
}

.woocommerce-page--single .dw-breadcrumbs {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  grid-template-areas:
    "gallery summary"
    "details details"
    "story story"
    "related related";
  gap: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
}

.woocommerce div.product .product-single-gallery,
.woocommerce div.product .woocommerce-product-gallery {
  grid-area: gallery;
  min-width: 0;
}

.woocommerce div.product .summary.entry-summary {
  grid-area: summary;
  min-width: 0;
  max-width: 28rem;
  align-self: start;
}

.woocommerce div.product .product-story-panel {
  grid-area: story;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .wc-tabs-wrapper {
  grid-area: details;
}

.product-single-gallery__stage {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(180deg, #ebe6de 0%, #e2dcd2 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-single-gallery--merch .product-single-gallery__stage {
  aspect-ratio: 5 / 4;
  background:
    radial-gradient(ellipse 70% 58% at 50% 42%, #f7f3ea 0%, #e4ddd1 58%, #d4cdc0 100%);
}

.product-single-gallery--object .product-single-gallery__stage {
  aspect-ratio: 1 / 1;
}

.product-single-gallery__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.15rem);
}

.product-single-gallery--merch .product-single-gallery__panel {
  padding: clamp(1.1rem, 3.5vw, 1.85rem);
}

.product-single-gallery__merch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.product-single-gallery__merch img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
}

.product-single-gallery--table .product-single-gallery__merch img {
  max-width: 92%;
  max-height: 90%;
  border-radius: 3px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 42px rgba(20, 20, 20, 0.2),
    0 2px 0 rgba(20, 20, 20, 0.06);
}

.product-single-gallery--object .product-single-gallery__merch img,
.product-single-gallery--surface .product-single-gallery__merch img {
  max-width: 82%;
  max-height: 82%;
  filter: drop-shadow(0 18px 32px rgba(20, 20, 20, 0.2));
}

.product-single-gallery__panel[hidden] {
  display: none !important;
}

.product-single-gallery__panel--room {
  padding: 0;
}

.product-single-gallery__caption {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

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

.product-single-gallery__caption-sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}

.woocommerce div.product .product-single-format {
  margin: -0.35rem 0 1rem;
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

.woocommerce div.product .woocommerce-product-gallery {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(180deg, #ebe6de 0%, #e2dcd2 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.woocommerce div.product .woocommerce-product-gallery__wrapper,
.woocommerce div.product .woocommerce-product-gallery__image {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.08);
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.woocommerce div.product form.cart {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.35rem;
  width: 100%;
}

.woocommerce div.product form.cart .quantity {
  margin: 0;
}

.woocommerce div.product table.variations {
  width: 100%;
  margin: 0;
  border: 0;
}

.woocommerce div.product table.variations th,
.woocommerce div.product table.variations td {
  padding: 0.3rem 0;
  border: 0;
  vertical-align: middle;
}

.woocommerce div.product table.variations label {
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

.woocommerce div.product table.variations select {
  width: 100%;
  min-height: 2.65rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
}

.woocommerce div.product form.cart .quantity .qty {
  width: 4.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  font: inherit;
  background: var(--white);
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 0;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs .tabs li {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}

.woocommerce div.product .woocommerce-tabs .tabs li a {
  display: inline-block;
  padding: 0.65rem 0;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-muted);
}

.woocommerce div.product .woocommerce-tabs .tabs li.active a {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.woocommerce div.product .woocommerce-tabs .tabs:not(:has(li:nth-child(2))) {
  display: none;
}

.woocommerce div.product .woocommerce-tabs:not(:has(.tabs li:nth-child(2))) .woocommerce-Tabs-panel h2:first-child {
  display: block;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
}

.woocommerce div.product .woocommerce-Tabs-panel--description,
.woocommerce div.product #tab-description {
  max-width: none;
}

.product-description-body {
  max-width: min(48rem, 100%);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.product-description-body > *:first-child {
  margin-top: 0;
}

.product-description-body > *:last-child {
  margin-bottom: 0;
}

.product-description-lede {
  max-width: min(48rem, 100%);
  margin: 0 0 1rem;
  font-size: var(--text-lead);
  line-height: 1.75;
  color: var(--ink-soft);
}

.product-description-story {
  margin: 0;
}

.woocommerce .related.products > ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}

.woocommerce div.product .product_title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.55rem;
}

.woocommerce div.product p.price {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.85rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--ink-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: #000;
  color: #fff;
}

.woocommerce a.button,
.woocommerce button.button:not(.single_add_to_cart_button) {
  width: auto;
}

.woocommerce .related.products {
  grid-area: related;
  margin-top: 0;
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}

.woocommerce .related.products h2 {
  font-size: var(--text-title);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Keep WooCommerce + MailPoet on theme fonts */
.woocommerce,
.woocommerce-page,
.woocommerce-page .button,
.woocommerce-page input,
.woocommerce-page select,
.woocommerce-page textarea,
.mailpoet_form,
.mailpoet_form input,
.mailpoet_form select,
.mailpoet_form textarea,
.mailpoet_form label,
.mailpoet_form .mailpoet_submit {
  font-family: var(--font-body) !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
  background: var(--white);
  list-style: none;
}

.dw-empty-basket {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.dw-empty-basket__icons {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.35rem);
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.dw-empty-basket__lede {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.woocommerce-cart .wc-empty-cart-message .cart-empty {
  text-align: center;
  border-left: 0;
  border-top: 1px solid rgba(26, 25, 23, 0.12);
  background: transparent;
  padding: 1.25rem 0 0.35rem;
  margin-bottom: 0.75rem;
}

.woocommerce-cart .return-to-shop {
  text-align: center;
}

/* Footer */
.site-footer {
  margin-top: 0;
  background: #1a1917;
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 3rem) clamp(1.25rem, 2.5vw, 1.75rem);
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: visible;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.7fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.footer-logo {
  margin: 0 0 0.65rem;
  font-family: var(--font-signature);
  font-size: clamp(1.85rem, 0.85rem + 3.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.01em;
  padding-inline: 0.1em;
  -webkit-font-smoothing: antialiased;
}

.footer-logo a {
  display: inline-block;
  max-width: 100%;
  color: #fff;
}

.footer-logo a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-logo__name {
  display: inline-block;
  transform: rotate(-1.5deg);
  transform-origin: left center;
}

.footer-logo-divider {
  margin: 0 0.35rem;
  opacity: 0.45;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-tagline {
  margin: 0;
  max-width: 22rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand-social {
  margin-top: 1.1rem;
  justify-content: flex-start;
  gap: 0.45rem;
}

.footer-brand-social a {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  opacity: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-brand-social a:hover,
.footer-brand-social a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.footer-nav {
  min-width: 0;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-newsletter {
  min-width: 0;
  max-width: 22rem;
}

.footer-newsletter-copy {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.footer-newsletter .footer-film-strip {
  width: 4.5rem;
  height: 0.75rem;
  flex: 0 0 auto;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 1rem;
  min-width: 0;
  flex: 1 1 18rem;
}

.footer-bottom .copyright {
  flex: 0 1 auto;
  min-width: 0;
}

.footer-built {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-built__link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-built__heart {
  flex: 0 0 auto;
  width: 0.72rem;
  height: 0.72rem;
  color: rgba(232, 120, 128, 0.85);
  transition: color 0.2s ease, transform 0.25s var(--ease);
}

.footer-built__name {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.footer-built__link:hover,
.footer-built__link:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

.footer-built__link:hover .footer-built__heart,
.footer-built__link:focus-visible .footer-built__heart {
  color: #f08a92;
  transform: scale(1.12);
}

.footer-built__link:hover .footer-built__name,
.footer-built__link:focus-visible .footer-built__name {
  color: #fff;
}

.footer-bottom .footer-policies {
  margin-top: 0;
  width: auto;
  flex: 1 1 18rem;
  min-width: 0;
}

.footer-bottom .footer-policy-links {
  justify-content: flex-end;
  gap: 0.45rem 0.9rem;
}

.footer-bottom .footer-policy-links a,
.footer-bottom .footer-policy-links__button {
  font-size: 0.72rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 0.75rem;
}

.footer-film-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 8rem);
  height: 1.1rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-film-strip:hover,
.footer-film-strip:focus-visible {
  opacity: 0.75;
}

.footer-film-strip.is-advanced {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-film-strip__holes {
  display: block;
  width: 100%;
  height: 100%;
  border-block: 2px solid rgba(255, 255, 255, 0.35);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 0 6px,
      transparent 6px 14px
    );
  border-radius: 2px;
}

.copyright {
  flex: 1 1 16rem;
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.45);
}

.copyright a {
  color: rgba(255, 255, 255, 0.68);
}

.copyright a:hover {
  color: #fff;
}

/* Compact email + subscribe as one control */
.site-footer .newsletter-signup {
  margin: 0;
  position: relative;
}

.site-footer .newsletter-form {
  margin: 0;
  max-width: 100%;
}

.site-footer .newsletter-form__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.site-footer .newsletter-form input[type="email"] {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  min-height: 0;
  height: 2.65rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.2;
  box-shadow: none;
}

.site-footer .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer .newsletter-form input:focus {
  outline: none;
  box-shadow: none;
}

.site-footer .newsletter-form .btn {
  flex: 0 0 auto;
  width: auto;
  min-height: 0;
  height: 2.65rem;
  margin: 0;
  padding: 0 1rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.site-footer .newsletter-form .btn:hover {
  background: #fff;
  color: var(--ink);
}

.footer-mailpoet {
  margin: 0;
}

.site-footer .mailpoet_form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  max-width: none;
}

.site-footer .mailpoet_form p,
.site-footer .mailpoet_form .mailpoet_paragraph {
  margin: 0;
  display: contents;
}

.site-footer .mailpoet_form label,
.site-footer .mailpoet_form .mailpoet_text_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer .mailpoet_form form {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.site-footer .mailpoet_form input[type="email"],
.site-footer .mailpoet_form input[type="text"],
.site-footer .mailpoet_form .mailpoet_text {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: 2.65rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.2;
}

.site-footer .mailpoet_form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer .mailpoet_form input[type="submit"],
.site-footer .mailpoet_form .mailpoet_submit {
  flex: 0 0 auto;
  width: auto;
  height: 2.65rem;
  margin: 0;
  padding: 0 1rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer .mailpoet_form input[type="submit"]:hover,
.site-footer .mailpoet_form .mailpoet_submit:hover {
  background: #fff;
  color: var(--ink);
}

.site-footer .mailpoet_form .mailpoet_validate_success,
.site-footer .mailpoet_form .mailpoet_validate_error {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
}

.site-footer .form-feedback {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: #9fd4a8;
}

.newsletter-signup__status {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.newsletter-signup__status[hidden] {
  display: none;
}

.newsletter-signup__status.is-error {
  color: #f0b4b4;
}

.newsletter-signup.is-complete .newsletter-signup__status {
  margin-bottom: 0;
}

.newsletter-signup.is-complete .newsletter-form,
.newsletter-form[hidden] {
  display: none !important;
}

.newsletter-signup--page .newsletter-signup__status,
.newsletter-signup--shop .newsletter-signup__status {
  color: var(--ink-muted);
}

.newsletter-signup--page .newsletter-signup__status.is-error,
.newsletter-signup--shop .newsletter-signup__status.is-error {
  color: #8a2f2f;
}

.newsletter-form .btn[disabled],
.newsletter-form .btn[aria-busy="true"] {
  opacity: 0.72;
  cursor: wait;
}

.newsletter-signup--shop {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  gap: 1rem;
}

.newsletter-signup--shop .newsletter-signup__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
}

.newsletter-signup--shop .newsletter-signup__text {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  max-width: 36rem;
}

.newsletter-signup--shop .newsletter-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 34rem;
}

.newsletter-signup--shop .newsletter-form input[type="email"] {
  flex: 1 1 14rem;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  font: inherit;
  border-radius: 4px;
}

.newsletter-signup--shop .mailpoet_form {
  max-width: 34rem;
}

/* Newsletter page */
.page-main--newsletter {
  padding-top: clamp(1.5rem, 3.5vw, 2.25rem);
  padding-bottom: var(--space-section);
}

.newsletter-page {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  padding-block: 0;
  max-width: 56rem;
}

.newsletter-page__signup .newsletter-signup--page {
  display: grid;
  gap: 1rem;
  max-width: none;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.newsletter-page__signup .newsletter-signup__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
}

.newsletter-page__signup .newsletter-signup__text {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.newsletter-page__signup .newsletter-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: stretch;
}

.newsletter-page__signup .newsletter-form input[type="email"] {
  flex: 1 1 12rem;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
}

.newsletter-page__signup .newsletter-form .btn {
  flex: 0 0 auto;
}

.newsletter-page__archive .section-head {
  text-align: left;
  margin: 0 0 1rem;
}

.newsletter-page__archive .section-head p {
  margin: 0.45rem 0 0;
  max-width: none;
}

.newsletter-archive-list {
  margin-top: 0;
}

.newsletter-archive-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.newsletter-archive-list a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.newsletter-archive-editions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.newsletter-archive-editions > li {
  border-bottom: 1px solid var(--line);
}

.newsletter-archive-editions__link {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) minmax(0, 1fr);
  gap: 1rem 1.15rem;
  align-items: center;
  padding: 1rem 0;
  color: inherit;
  text-decoration: none;
}

.newsletter-archive-editions__media {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}

.newsletter-archive-editions__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.newsletter-archive-editions__link:hover .newsletter-archive-editions__media img,
.newsletter-archive-editions__link:focus-visible .newsletter-archive-editions__media img {
  transform: scale(1.04);
}

.newsletter-archive-editions__body {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.newsletter-archive-editions__link:hover .newsletter-archive-editions__title,
.newsletter-archive-editions__link:focus-visible .newsletter-archive-editions__title {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.newsletter-archive-editions__date {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.newsletter-archive-editions__copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.newsletter-archive-editions__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
}

.newsletter-archive-editions__blurb {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.newsletter-archive-mailpoet {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.newsletter-archive-mailpoet__label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.newsletter-archive-empty {
  margin: 0;
  max-width: none;
  color: var(--ink-muted);
  line-height: 1.6;
}

.newsletter-edition {
  padding-block: 0 clamp(2.5rem, 6vw, 4rem);
  max-width: 56rem;
}

.newsletter-edition__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.newsletter-edition__meta a {
  color: inherit;
  text-underline-offset: 0.18em;
}

.newsletter-edition__cover {
  margin: 0 0 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-soft);
}

.newsletter-edition__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.newsletter-edition__body {
  display: grid;
  gap: 1.15rem;
}

.newsletter-edition__body > * {
  margin: 0;
}

.newsletter-edition__body h2 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
}

.newsletter-edition__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.newsletter-edition__story {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.newsletter-edition__story--has-media {
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
}

.newsletter-edition__story:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.newsletter-edition__story-media {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}

.newsletter-edition__story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.newsletter-edition__story:hover .newsletter-edition__story-media img,
.newsletter-edition__story:focus-within .newsletter-edition__story-media img {
  transform: scale(1.04);
}

.newsletter-edition__story-copy {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.newsletter-edition__story-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
}

.newsletter-edition__story-title a {
  color: inherit;
  text-decoration: none;
}

.newsletter-edition__story-title a:hover,
.newsletter-edition__story-title a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.newsletter-edition__story-excerpt {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.newsletter-edition__story-link {
  margin: 0;
  font-size: 0.92rem;
}

.newsletter-convert {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}

.newsletter-convert__shop,
.newsletter-convert__signup {
  display: grid;
  gap: 1rem;
}

.newsletter-convert__intro {
  display: grid;
  gap: 0.45rem;
  max-width: 38rem;
}

.newsletter-convert__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
}

.newsletter-convert__lede {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.newsletter-convert__products {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.newsletter-convert__products > li {
  margin: 0;
  min-width: 0;
}

.newsletter-convert__products .product-card {
  height: 100%;
}

.newsletter-convert__actions {
  margin: 0.25rem 0 0;
}

.newsletter-convert__signup .newsletter-signup {
  display: grid;
  gap: 0.85rem;
  max-width: none;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.newsletter-convert__signup .newsletter-signup__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
}

.newsletter-convert__signup .newsletter-signup__text {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.newsletter-convert__signup .newsletter-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: stretch;
}

.newsletter-convert__signup .newsletter-form input[type="email"] {
  flex: 1 1 12rem;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 0.9rem;
}

.newsletter-convert__signup .newsletter-form .btn {
  flex: 0 0 auto;
}

@media (max-width: 840px) {
  .newsletter-convert__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .newsletter-convert__products {
    grid-template-columns: 1fr;
  }
}

.newsletter-edition__body .mailpoet_newsletter_iframe,
.newsletter-edition__body iframe {
  display: block;
  width: 100%;
  min-height: 36rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 640px) {
  .newsletter-archive-editions__link {
    grid-template-columns: 5.75rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .newsletter-edition__story--has-media {
    grid-template-columns: 5.75rem minmax(0, 1fr);
    gap: 0.75rem 0.85rem;
  }
}

.woocommerce-checkout .mailpoet-checkout-optin,
.woocommerce-checkout #mailpoet_woocommerce_checkout_optin_present_field,
.woocommerce-checkout .woocommerce-form__label-for-checkbox:has(#mailpoet_woocommerce_checkout_optin) {
  margin: 1rem 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.woocommerce-checkout #mailpoet_woocommerce_checkout_optin {
  margin-right: 0.45rem;
}

.site-footer .wp-block-archives,
.site-footer .wp-block-categories,
.site-footer .widget_archive,
.site-footer .widget_categories {
  display: none !important;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.lightbox-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero-scroll:focus-visible,
.footer-brand-social a:focus-visible,
.site-footer .newsletter-form:focus-within {
  outline-color: #fff;
}

.site-footer .newsletter-form__row:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.site-footer .newsletter-form input:focus-visible {
  outline: none;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 200;
  padding: 0.85rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Pagination */
.navigation.pagination {
  margin-top: 3rem;
  text-align: center;
}

.navigation.pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.navigation.pagination a,
.navigation.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

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

@media (max-width: 980px) {
  .masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .tile-lg {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 18rem;
  }

  .story-row,
  .product-grid--featured,
  .product-grid--shop,
  .shop-home-grid,
  .woocommerce ul.products,
  .woocommerce .related.products > ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-grid,
  .commissions-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .commissions-inner .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
  }

  .spotlight-product {
    right: 0.5rem;
    bottom: -0.5rem;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "summary"
      "details"
      "story"
      "related";
  }

  .woocommerce div.product .summary.entry-summary {
    align-self: start;
  }

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

  .product-story-panel__media {
    max-width: 16rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
    overflow: visible;
    transform: none;
    filter: none;
    contain: none;
  }

  .brand {
    min-width: 0;
    overflow: visible;
    white-space: normal;
  }

  .brand__name {
    display: inline;
    max-width: none;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.15;
  }

  .brand__word {
    white-space: nowrap;
  }

  .site-header__social {
    display: none;
  }

  .copyright {
    flex-basis: auto;
  }

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

  .footer-bottom__credit {
    flex: 1 1 auto;
    width: 100%;
    gap: 0.4rem 0.75rem;
  }

  .footer-bottom .footer-policy-links {
    justify-content: flex-start;
  }

  .footer-policy-links {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 97;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 95;
    width: min(22rem, calc(100vw - 3rem));
    height: 100dvh;
    max-height: 100dvh;
    padding: calc(var(--header-h) + 1rem) 1.25rem 1.5rem;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 40px rgba(20, 20, 20, 0.12);
    transform: translateX(110%);
    transition: transform 0.32s var(--ease), visibility 0.32s var(--ease);
    overflow-x: hidden;
    overflow-y: auto;
    justify-self: auto;
    visibility: hidden;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav__item a {
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    background: var(--bg-warm);
    color: var(--ink);
  }

  .site-nav__mobile-meta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.35rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
  }

  .site-nav__search {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 3rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-warm);
    overflow: hidden;
  }

  .site-nav__search-input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0.75rem 0.85rem 0.75rem 1rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.3;
  }

  .site-nav__search-input::placeholder {
    color: var(--ink-muted);
  }

  .site-nav__search-input:focus {
    outline: none;
  }

  .site-nav__search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background: var(--white);
  }

  .site-nav__search-submit {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 3rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
  }

  .site-nav__search-submit:hover,
  .site-nav__search-submit:focus-visible {
    color: var(--ink);
    background: rgba(20, 20, 20, 0.04);
  }

  .site-nav__mobile-shop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
  }

  .site-nav__mobile-shop:hover,
  .site-nav__mobile-shop:focus-visible {
    background: #2a2824;
    color: #fff;
  }

  .site-nav__mobile-shop-arrow {
    font-size: 1.05rem;
    opacity: 0.75;
  }

  .stories .story-grid {
    grid-template-columns: 1fr;
    max-width: 36rem;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .story-row,
  .product-grid--featured,
  .product-grid--shop,
  .shop-home-grid,
  .woocommerce ul.products,
  .woocommerce .related.products > ul.products,
  .masonry,
  .stats-inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 1.15rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

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

  .footer-brand,
  .footer-newsletter {
    grid-column: auto;
    max-width: none;
  }

  .footer-logo {
    margin: 0 0 0.3rem;
    font-size: clamp(1.4rem, 0.8rem + 4vw, 1.85rem);
    line-height: 1.12;
    overflow: hidden;
  }

  .footer-logo a {
    display: block;
    max-width: 100%;
  }

  .footer-logo__name {
    display: inline;
    max-width: 100%;
    transform: rotate(-1deg);
    transform-origin: left center;
  }

  .footer-logo .brand__word {
    display: inline;
    white-space: nowrap;
  }

  .footer-logo .brand__space {
    display: inline;
    white-space: pre;
  }

  .footer-tagline {
    max-width: none;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .footer-brand-social {
    margin-top: 0.5rem;
    gap: 0.25rem;
    flex-wrap: wrap;
  }

  .footer-brand-social a {
    width: 1.6rem;
    height: 1.6rem;
  }

  .footer-heading {
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .footer-newsletter p {
    margin: 0 0 0.45rem;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .footer-links li {
    margin: 0;
  }

  .footer-links li + li {
    margin-top: 0;
  }

  .footer-newsletter-copy {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
  }

  .site-footer .newsletter-form__row,
  .site-footer .mailpoet_form form {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .site-footer .newsletter-form input[type="email"],
  .site-footer .mailpoet_form input[type="email"],
  .site-footer .mailpoet_form input[type="text"] {
    flex: 1 1 auto;
    height: 2.3rem;
    font-size: 0.84rem;
  }

  .site-footer .newsletter-form .btn,
  .site-footer .mailpoet_form input[type="submit"],
  .site-footer .mailpoet_form .mailpoet_submit {
    height: 2.3rem;
    padding: 0 0.7rem;
    font-size: 0.66rem;
  }

  .footer-bottom {
    margin-top: 0.65rem;
    padding-top: 0.55rem;
    gap: 0.4rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom__credit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    width: 100%;
  }

  .footer-bottom .copyright {
    flex: none;
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .footer-built {
    margin: 0;
  }

  .footer-policies {
    width: 100%;
  }

  .footer-policy-links {
    justify-content: flex-start;
    gap: 0.45rem 0.85rem;
  }

  .footer-policy-links a,
  .footer-policy-links__button {
    font-size: 0.72rem;
  }

  .site-header {
    min-height: 3.75rem;
    padding-block: 0.55rem;
  }

  .brand {
    font-size: clamp(1.2rem, 0.55rem + 4.6vw, 1.55rem);
    max-width: calc(100vw - 5.25rem);
    line-height: 1.15;
    padding-block: 0.12em;
  }

  .brand__name {
    transform: rotate(-1deg);
  }

  .hero-content {
    margin: 0 0.85rem;
    padding: 1.35rem 1rem 1.45rem;
    overflow: visible;
  }

  .hero-brand {
    font-size: clamp(1.85rem, 0.55rem + 10vw, 2.85rem);
    line-height: 1.2;
    margin-bottom: 0.7rem;
    padding-inline: 0.05em;
  }

  .hero-brand__name {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 0.28em;
    transform: rotate(-1deg);
    max-width: 100%;
  }

  .hero-brand .brand__space {
    display: none;
  }

  .product-card__format {
    left: 0.65rem;
    bottom: 0.45rem;
    min-height: 1.5rem;
    padding: 0.24rem 0.55rem;
    font-size: 0.62rem;
  }

  .product-card__media .product-art-frame {
    inset: 0.65rem 0.65rem 2.35rem;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: clamp(1.05rem, 4.8vw, 1.3rem);
    max-width: calc(100vw - 4.85rem);
  }

  .hero-brand {
    font-size: clamp(1.65rem, 9.5vw, 2.2rem);
  }

  .hero-brand__name {
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.05;
  }
}

/* Easter eggs */
body.easter-modal-open {
  overflow: hidden;
}

.easter-modal,
.easter-contact-sheet {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 6, 4, 0.82);
}

.easter-modal[hidden],
.easter-contact-sheet[hidden] {
  display: none;
}

.easter-modal__panel,
.easter-contact-sheet__panel {
  position: relative;
  width: min(100%, 28rem);
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.easter-modal__close,
.easter-contact-sheet__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
}

.easter-modal__title,
.easter-contact-sheet__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
}

.easter-modal__body {
  font-size: var(--text-lead);
  line-height: 1.65;
  color: var(--ink-soft);
}

.easter-modal__body p {
  margin: 0;
}

.easter-contact-sheet__eyebrow {
  margin: 0 0 0.35rem;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
}

.easter-contact-sheet__subtitle {
  margin: 0 0 1.25rem;
  font-size: var(--text-sm);
  color: var(--ink-muted);
}

.easter-contact-sheet__body {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--bg-warm);
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.82rem;
}

.easter-contact-sheet__row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem;
}

.easter-contact-sheet__label {
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.easter-contact-sheet__value {
  color: var(--ink);
}

body.is-golden-hour {
  transition: filter 0.6s var(--ease);
  filter: sepia(0.18) saturate(1.15) brightness(1.03);
}

body.is-shutter-flash::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(255, 255, 255, 0.92);
  pointer-events: none;
  animation: shutter-flash 0.45s var(--ease) forwards;
}

body.is-film-grain::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 340;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-fade 3.5s var(--ease) forwards;
}

@keyframes shutter-flash {
  from { opacity: 0.95; }
  to { opacity: 0; }
}

@keyframes grain-fade {
  0%, 70% { opacity: 0.14; }
  100% { opacity: 0; }
}

/* About, contact, search and 404 */
.page-main--about,
.page-main--contact,
.page-main--search,
.page-main--404,
.page-main--error {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: var(--space-section-lg);
}

.page-main--error {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

/* Error / empty recovery stage */
.error-stage {
  position: relative;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: clip;
}

.error-stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(70%, 28rem);
  background:
    radial-gradient(ellipse 70% 55% at 18% 20%, rgba(139, 105, 20, 0.14), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 10%, rgba(20, 20, 20, 0.05), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.error-stage__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.error-stage__intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3.5vw, 2.5rem);
  align-items: center;
}

.error-stage__mark {
  flex-shrink: 0;
}

.error-stage__frame {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(7.5rem, 18vw, 10.5rem);
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 236, 231, 0.88));
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 40px rgba(20, 20, 20, 0.08);
}

.error-stage__corners::before,
.error-stage__corners::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--accent);
  opacity: 0.85;
}

.error-stage__corners::before {
  top: 0.7rem;
  left: 0.7rem;
  border-right: 0;
  border-bottom: 0;
}

.error-stage__corners::after {
  right: 0.7rem;
  bottom: 0.7rem;
  border-left: 0;
  border-top: 0;
}

.error-stage__frame::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--accent);
  border-left: 0;
  border-bottom: 0;
  opacity: 0.85;
}

.error-stage__frame::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--accent);
  border-right: 0;
  border-top: 0;
  opacity: 0.85;
}

.error-stage__code {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  animation: error-code-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.error-stage__copy h1 {
  margin: 0.15rem 0 0.55rem;
  max-width: 16ch;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  animation: error-copy-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.error-stage__lede {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  animation: error-copy-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.error-stage__search {
  max-width: 40rem;
  animation: error-copy-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.error-stage__search .search-form {
  margin-bottom: 0;
}

.error-stage__destinations {
  animation: error-copy-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.error-stage__dest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.65rem;
}

.error-stage__dest {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 100%;
  padding: 0.85rem 0.95rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.error-stage__dest:hover,
.error-stage__dest:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
  outline: none;
}

.error-stage__dest-label {
  font-weight: 600;
  font-size: 0.98rem;
}

.error-stage__dest-hint {
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.error-stage__dest:hover .error-stage__dest-hint,
.error-stage__dest:focus-visible .error-stage__dest-hint {
  color: inherit;
  opacity: 0.85;
}

.error-recovery {
  padding-top: clamp(0.5rem, 2vw, 1rem);
  border-top: 1px solid var(--line);
}

.error-recovery__head {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 36rem;
}

.error-recovery__head h2 {
  margin: 0.15rem 0 0.4rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  letter-spacing: -0.02em;
}

.error-recovery__lede {
  margin: 0;
  color: var(--ink-muted);
}

.error-recovery__more {
  margin: 1.5rem 0 0;
}

@keyframes error-code-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes error-copy-in {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .error-stage__intro {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .error-stage__frame {
    width: 6.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-stage__code,
  .error-stage__copy h1,
  .error-stage__lede,
  .error-stage__search,
  .error-stage__destinations {
    animation: none;
  }

  .error-stage__dest {
    transition: none;
  }
}

.about-page__intro {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  margin-bottom: var(--space-section);
}

.about-page__portrait {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 1;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
  position: relative;
}

.about-page__portrait img,
.about-portrait-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  user-select: none;
  -webkit-user-drag: none;
}

.about-portrait-gallery__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.about-portrait-gallery__viewport.is-dragging {
  cursor: grabbing;
}

.about-portrait-gallery__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
}

.about-portrait-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  pointer-events: none;
}

.about-portrait-gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.about-portrait-gallery__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.55rem 0.55rem;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.55), transparent);
}

.about-portrait-gallery__btn,
.about-portrait-gallery__pause,
.about-portrait-gallery__dot {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
}

.about-portrait-gallery__btn {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.about-portrait-gallery__btn:hover,
.about-portrait-gallery__btn:focus-visible,
.about-portrait-gallery__pause:hover,
.about-portrait-gallery__pause:focus-visible,
.about-portrait-gallery__dot:hover,
.about-portrait-gallery__dot:focus-visible {
  background: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.about-portrait-gallery__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.about-portrait-gallery__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  padding: 0;
  opacity: 0.55;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.about-portrait-gallery__dot.is-active {
  opacity: 1;
  width: 1rem;
  border-radius: 999px;
}

.about-portrait-gallery__pause {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 0.15rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.about-portrait-gallery__slide[hidden] {
  display: block !important;
}

@media (prefers-reduced-motion: reduce) {
  .about-portrait-gallery__slide {
    transition: none;
  }
}

.about-page__copy {
  min-width: 0;
}

.about-page__content {
  font-size: var(--text-lead);
  line-height: 1.75;
  color: var(--ink-soft);
}

.about-page__content > :first-child {
  margin-top: 0;
}

.about-page__content p {
  margin: 0 0 1.15rem;
}

.about-page__content p:last-child {
  margin-bottom: 0;
}

.about-page__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.about-page__social-label {
  margin: 0 0 0.85rem;
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}

.about-social,
.contact-social {
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.contact-page__social {
  margin-top: 0.5rem;
}

.about-page__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: var(--space-section);
  padding-top: var(--space-block);
  border-top: 1px solid var(--line);
}

.about-highlight {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.about-highlight h2 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.about-highlight p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.text-link {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-focus {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.55), transparent 42%),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-focus__head {
  max-width: 40rem;
  margin-bottom: 1.15rem;
}

.contact-focus__title {
  margin: 0.2rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
}

.contact-focus__lede {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.contact-focus__sheet {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.contact-focus__frame {
  appearance: none;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-focus__frame:hover,
.contact-focus__frame:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--ink) 28%, var(--line));
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
  outline: none;
}

.contact-focus__frame.is-focused {
  border-color: var(--ink);
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.12);
}

.contact-focus__frame-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}

.contact-focus__frame-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2.5px) saturate(0.85) brightness(0.92);
  transform: scale(1.06);
  transition: filter 0.45s ease, transform 0.45s ease, brightness 0.45s ease;
}

.contact-focus__frame:hover .contact-focus__frame-media img,
.contact-focus__frame:focus-visible .contact-focus__frame-media img,
.contact-focus__frame.is-focused .contact-focus__frame-media img {
  filter: blur(0) saturate(1) brightness(1);
  transform: scale(1);
}

.contact-focus__viewfinder {
  position: absolute;
  inset: 0.45rem;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}

.contact-focus__frame.is-focused .contact-focus__viewfinder,
.contact-focus__frame:hover .contact-focus__viewfinder,
.contact-focus__frame:focus-visible .contact-focus__viewfinder {
  opacity: 1;
}

.contact-focus__corner {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.contact-focus__corner--tl {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}

.contact-focus__corner--tr {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}

.contact-focus__corner--bl {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
}

.contact-focus__corner--br {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}

.contact-focus__frame-no {
  position: absolute;
  top: 0.4rem;
  left: 0.45rem;
  padding: 0.15rem 0.35rem;
  border-radius: 3px;
  background: rgba(18, 18, 18, 0.55);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-focus__frame-copy {
  display: grid;
  gap: 0.15rem;
  padding: 0 0.1rem 0.15rem;
}

.contact-focus__frame-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.contact-focus__frame-hint {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-muted);
}

.contact-focus__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
  margin: 0.9rem 0 0;
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contact-focus__status-text {
  margin: 0;
  flex: 1 1 12rem;
}

.contact-focus__continue {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-focus__continue:hover,
.contact-focus__continue:focus-visible {
  border-color: color-mix(in srgb, var(--ink) 35%, var(--line));
  background: var(--bg-soft);
  outline: none;
}

.contact-focus__continue::after {
  content: "↓";
  font-size: 0.78em;
  opacity: 0.7;
}

.contact-form-panel.is-picked {
  animation: contact-panel-pick 1.1s ease;
}

@keyframes contact-panel-pick {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 20, 20, 0);
  }
  35% {
    box-shadow: 0 0 0 3px rgba(20, 20, 20, 0.12);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 20, 20, 0);
  }
}

.contact-exposure {
  margin: 0 0 1.15rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
}

.contact-exposure__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.contact-exposure__label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}

.contact-exposure__reading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-exposure__meter {
  position: relative;
  height: 0.7rem;
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ink) 10%, var(--white));
  border: 1px solid var(--line);
}

.contact-exposure__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6b655c 0%, #2f2a24 55%, #c4a574 100%);
  transition: width 0.35s ease;
}

.contact-exposure__marks {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 24.5%, rgba(255, 255, 255, 0.45) 25%, transparent 25.5%),
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.55) 50%, transparent 50.5%),
    linear-gradient(90deg, transparent 74.5%, rgba(255, 255, 255, 0.45) 75%, transparent 75.5%);
  pointer-events: none;
}

.contact-exposure__hint {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.contact-form-panel.is-ready .contact-exposure {
  border-color: color-mix(in srgb, var(--ink) 35%, var(--line));
}

.contact-form-panel.is-ready [data-contact-submit] {
  animation: contact-ready-pulse 1.6s ease-in-out infinite;
}

@keyframes contact-ready-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20, 20, 20, 0); }
  50% { box-shadow: 0 0 0 4px rgba(20, 20, 20, 0.08); }
}

@media (max-width: 1100px) {
  .contact-focus__sheet {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .contact-focus__sheet {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .contact-focus__sheet {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .contact-focus__frame-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-focus__frame,
  .contact-focus__frame-media img,
  .contact-exposure__fill,
  .contact-focus__continue {
    transition: none;
  }

  .contact-form-panel.is-ready [data-contact-submit],
  .contact-form-panel.is-picked {
    animation: none;
  }
}

.contact-page__copy {
  margin-bottom: 1.5rem;
  font-size: var(--text-lead);
  line-height: 1.7;
}

.contact-details {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.contact-details li + li {
  margin-top: 1rem;
}

.contact-details__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-form-panel,
.contact-page__intro {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .contact-license-fields {
  display: none;
}

.contact-form.is-licensing .contact-license-fields {
  display: grid;
}

.contact-license-context {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.95rem;
}

.contact-license {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-license h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.15;
}

.contact-license__lede {
  margin: 0 0 1.5rem;
  max-width: 46rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.contact-license__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: license-step;
}

.contact-license__steps li {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1rem 2.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  counter-increment: license-step;
}

.contact-license__steps li::before {
  content: counter(license-step, decimal-leading-zero);
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.contact-license__steps strong {
  font-weight: 600;
}

.contact-license__steps span {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .contact-license__steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .contact-license__steps {
    grid-template-columns: 1fr;
  }
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-soft);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-feedback.is-success {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(47, 93, 58, 0.12);
  color: #2f5d3a;
}

.form-feedback.is-error {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(180, 68, 68, 0.1);
  color: #8f3333;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 var(--space-block);
}

.search-form input {
  flex: 1 1 16rem;
  min-width: 0;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  background: var(--white);
}

.search-results {
  margin-top: var(--space-block);
}

.empty-page {
  text-align: center;
  padding: var(--space-section) 0;
}

.empty-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 var(--space-block);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .about-page__intro {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-page__portrait {
    max-width: 18rem;
    margin: 0 auto;
  }

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

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

  @view-transition {
    navigation: none;
  }

  .hero-media img,
  .hero-content,
  .tile,
  .story-item,
  .story-card,
  .product,
  .about-strip,
  .print-spotlight,
  .commissions-band {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-brand.is-signing-pending .hero-brand__name,
  .hero-brand.is-signing .hero-brand__name,
  .hero-brand__name {
    animation: none !important;
    clip-path: none !important;
  }

  body.is-golden-hour {
    filter: none !important;
  }

  body.is-shutter-flash::after,
  body.is-film-grain::before {
    animation: none !important;
    display: none !important;
  }
}

/* v1.10 enhancements */
.header-tool--search {
  cursor: pointer;
  background: transparent;
}

.header-cart {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.header-cart:hover {
  color: var(--ink);
  background: var(--bg-warm);
  border-color: transparent;
}

.header-cart__count {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: start center;
  padding: calc(var(--header-h, 68px) + 1.25rem) 1.25rem 2rem;
  background: rgba(24, 22, 20, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-overlay[hidden] {
  display: none;
}

.search-overlay__panel {
  width: min(100%, 34rem);
  padding: clamp(1.25rem, 3vw, 1.65rem);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(20, 18, 16, 0.22);
}

.search-overlay__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.search-overlay__heading {
  min-width: 0;
}

.search-overlay__heading .section-eyebrow {
  margin: 0 0 0.35rem;
}

.search-overlay__lede {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.search-overlay__close {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  margin: -0.2rem -0.2rem 0 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.search-overlay__close:hover,
.search-overlay__close:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  outline: none;
}

.search-overlay__form {
  margin: 0;
}

.search-overlay__field {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: stretch;
}

.search-overlay .search-form input[type="search"],
.search-overlay__field input[type="search"] {
  flex: 1 1 12rem;
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  box-shadow: none;
}

.search-overlay__field input[type="search"]::placeholder {
  color: var(--ink-muted);
}

.search-overlay__field input[type="search"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.search-overlay__submit {
  flex: 0 0 auto;
  min-width: 7.5rem;
  border-radius: 8px;
  letter-spacing: 0.06em;
}

.search-overlay__quick {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.search-overlay__quick-label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}

.search-overlay__quick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.search-overlay__quick-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.search-overlay__quick-list a:hover,
.search-overlay__quick-list a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  outline: none;
}

@media (max-width: 520px) {
  .search-overlay__submit {
    width: 100%;
  }
}

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

.recovery-links {
  margin-top: 1.5rem;
}

.recovery-links__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.recovery-links__section {
  margin-top: 2rem;
}

.recovery-links__section h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.recovery-links__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recovery-links__list li + li {
  margin-top: 0.45rem;
}

.empty-state + .recovery-links {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 2rem;
}

.contact-success-panel {
  padding: 1.5rem;
  background: var(--bg-warm);
  border: 1px solid var(--line);
}

.contact-success-panel__title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-success-panel__copy {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.form-row--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-story-panel {
  margin: 0;
}

.product-story-panel__card {
  display: grid;
  grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.product-story-panel__media {
  margin: 0;
}

.product-story-panel__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.product-story-panel__eyebrow {
  margin: 0 0 0.35rem;
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent);
}

.product-story-panel__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.35;
}

.product-story-panel__lede {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.product-story-panel__toggle {
  min-height: 2.4rem;
  padding-inline: 1rem;
}

.product-story-panel__body {
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.product-story-panel__prose {
  max-width: min(48rem, 100%);
  max-height: min(32rem, 70vh);
  overflow: auto;
  padding-right: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  overscroll-behavior: contain;
}

.product-story-panel__prose > *:first-child {
  margin-top: 0;
}

.product-story-panel__prose img {
  max-width: 100%;
  height: auto;
}

.product-story-panel__keep-shopping {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-muted);
}

/* Legacy class kept for older markup / caches */
.product-story-link {
  display: none;
}

.footer-policies {
  width: auto;
  flex: 1 1 16rem;
  min-width: 0;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-policy-links a,
.footer-policy-links__button {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible,
.footer-policy-links__button:hover,
.footer-policy-links__button:focus-visible {
  color: #fff;
}

/* Story → print rail */
.story-prints {
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.story-prints__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--grid-gap);
  margin-top: 1.5rem;
}

.story-prints .section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Print journeys */
.print-journeys {
  padding: var(--space-section) 0;
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.print-journeys__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 1.75rem;
}

.print-journey-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.print-journey-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
}

.print-journey-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.print-journey-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.print-journey-card__eyebrow {
  margin: 0 0 0.4rem;
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-muted);
}

.print-journey-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.print-journey-card__lede {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.print-journey-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
}

.print-journey-card__print {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.print-journey-card__print:hover {
  color: var(--accent);
}

/* Places */
.page-main--places {
  padding: 0 var(--page-gutter) clamp(2.5rem, 6vw, 4rem);
}

.page-main--places > .page-masthead,
.page-main--places > .page-hero {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.page-main--places .page-masthead__lede {
  max-width: 36rem;
}

.places-home,
.places-hubs,
.places-stories,
.places-prints,
.places-regions {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}

.places-hubs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 1.5rem;
}

.places-hub-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s var(--ease);
}

.places-hub-card:hover,
.places-hub-card:focus-visible {
  opacity: 0.92;
  transform: none;
  border-color: transparent;
}

.places-hub-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.places-hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.places-hub-card:hover .places-hub-card__media img {
  transform: scale(1.03);
}

.places-hub-card__body {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 0 0.25rem;
}

.places-hub-card__eyebrow {
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-muted);
}

.places-hub-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 500;
}

.places-hub-card__lede {
  color: var(--ink-soft);
  line-height: 1.55;
}

.places-hub-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

.places-hub-card__meta-sep {
  opacity: 0.45;
}

.places-hub-card__cta {
  margin-top: 0.2rem;
  font-weight: 500;
}

.places-recent {
  padding: var(--space-section) 0;
}

.places-recent .section-head {
  margin-bottom: 1.5rem;
}

.this-month {
  opacity: 0.98;
}

.page-main--shop {
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  padding-bottom: var(--space-section);
}

.product-grid--shop {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: opacity 0.2s var(--ease);
}

.product-card:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.94;
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
  text-decoration: none;
}

.product-card__media .product-art-frame {
  inset: 0.55rem;
  padding: 0.4rem;
  box-shadow: none;
}

.places-home__map-link {
  margin-left: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.places-home__map-link:hover {
  color: var(--accent);
}

.places-map-stage {
  display: grid;
  gap: 1.1rem;
  margin: 0 auto clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.72), transparent 40%),
    var(--bg-soft);
}

.places-map-stage__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.places-map-stage__copy {
  flex: 1 1 18rem;
  min-width: 0;
  max-width: 40rem;
}

.places-map-stage__title {
  margin: 0.25rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.places-map-stage__lede {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.places-map-stage__count {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.places-map-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.places-map-stage__frame-wrap {
  display: grid;
  gap: 0.55rem;
}

.places-map-stage__frame {
  display: block;
  width: 100%;
  height: min(72vh, 38rem);
  min-height: 22rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1a1a1a;
}

.places-map-stage__frame-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.places-map-stage__frame-hint a {
  color: inherit;
  text-underline-offset: 0.15em;
}

.places-map-stage__how {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  border-top: 1px solid var(--line);
}

.places-map-stage__how li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.places-map-stage__how-step {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-muted);
  padding-top: 0.15rem;
}

.places-map-stage__how-copy {
  display: grid;
  gap: 0.2rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.places-map-stage__how-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.places-regions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 1.35rem;
}

.places-region {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.places-region__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(20, 20, 20, 0.06), transparent 55%),
    var(--bg-soft);
}

.places-region__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.places-region:hover .places-region__media img {
  transform: scale(1.03);
}

.places-region__media--empty {
  background:
    linear-gradient(160deg, #ddd6c8 0%, #cfc6b6 100%);
}

.places-region__body {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 0 0.15rem;
}

.places-region__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 500;
}

.places-region__lede,
.places-region__meta {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
}

.places-region__meta {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.places-region__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0.45rem 0 0;
}

.places-stories--compact .section-head p {
  max-width: 36rem;
}

.places-stories--compact .story-row--places {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.places-stories__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.places-prints .section-head p {
  max-width: 36rem;
}

.places-prints .shop-home-grid--places {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.places-prints__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.places-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 1rem 0 0.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.places-switch a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
}

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

.places-map-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: var(--space-section) 0;
  margin: var(--space-section) auto;
  border-top: 1px solid var(--line);
}

.places-map-band--compact {
  grid-template-columns: 1fr;
  padding-top: 2rem;
}

.places-map-band__copy h2 {
  margin: 0.4rem 0 0.75rem;
}

@media (max-width: 900px) {
  .print-journeys__grid,
  .places-hubs__grid,
  .places-map-band,
  .places-regions__grid,
  .places-map-stage__how,
  .places-stories--compact .story-row--places,
  .places-prints .shop-home-grid--places {
    grid-template-columns: 1fr;
  }

  .places-map-stage__frame {
    height: min(68vh, 28rem);
  }
}


/* Product room preview */
.product-single-gallery__tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.product-view-tab {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-muted);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
}

.product-view-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.room-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 1.25rem 1rem 2.5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(90deg, rgba(20, 20, 20, 0.04) 0 1px, transparent 1px 48px),
    #d9d2c6;
  container-type: size;
  container-name: room;
}

.room-preview__wall {
  position: absolute;
  inset: 0 0 18% 0;
  background:
    linear-gradient(180deg, #e8e2d6 0%, #d4cdc0 100%);
  box-shadow: inset 0 -24px 40px rgba(20, 20, 20, 0.08);
}

.room-preview__print {
  position: relative;
  z-index: 1;
  width: var(--room-print-scale, 42%);
  max-width: 68%;
  margin: 0;
  margin-top: 11%;
  margin-bottom: auto;
  padding: 0.45rem;
  background: #f7f4ee;
  box-shadow:
    0 18px 40px rgba(20, 20, 20, 0.18),
    0 2px 0 rgba(20, 20, 20, 0.08);
}

.room-preview__print img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #efeae2;
}

.room-preview__shelf {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 14%;
  height: 0.55rem;
  background: linear-gradient(180deg, #b7aea0, #8f8678);
  box-shadow: 0 10px 18px rgba(20, 20, 20, 0.18);
}

.room-preview__scale,
.room-preview__hint {
  display: none;
}

.room-preview--table .room-preview__wall,
.room-preview--object .room-preview__wall,
.room-preview--surface .room-preview__wall {
  display: none;
}

.room-preview--table .room-preview__shelf,
.room-preview--object .room-preview__shelf,
.room-preview--surface .room-preview__shelf {
  display: none;
}

.room-preview__table {
  display: none;
}

.room-preview--table .room-preview__table,
.room-preview--object .room-preview__table,
.room-preview--surface .room-preview__table {
  display: none;
}

/*
 * Non-print merchandise: studio close-up (no wall / shelf theatre).
 * Prints keep the wall room preview above.
 */
.room-preview--table,
.room-preview--object,
.room-preview--surface {
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(ellipse 75% 60% at 50% 45%, #f4f0e8 0%, #ddd4c6 62%, #cfc5b6 100%);
}

.room-preview--table .room-preview__print,
.room-preview--object .room-preview__print,
.room-preview--surface .room-preview__print {
  position: relative;
  z-index: 2;
  width: min(90%, 34rem);
  max-width: 92%;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: none;
}

.room-preview--table .room-preview__print img,
.room-preview--object .room-preview__print img,
.room-preview--surface .room-preview__print img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(84cqh, 34rem);
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 3px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5),
    0 16px 36px rgba(20, 20, 20, 0.18);
}

/* Legacy handle removed from markup; keep hidden if cached HTML remains. */
.room-preview__mug-handle {
  display: none !important;
}

@media (min-width: 900px) {
  .room-preview__print {
    /* Width % of the stage — no tiny rem cap on large PC panels */
    max-width: 72%;
  }

  .room-preview--table .room-preview__print,
  .room-preview--object .room-preview__print,
  .room-preview--surface .room-preview__print {
    width: min(88%, 36rem);
    max-width: 90%;
  }
}


/* Shop virtual gallery: walkable corridor */
.page-main--shop-gallery {
  padding-top: 0;
}

.gallery-walk {
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 1.25rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(180, 140, 90, 0.14), transparent 55%),
    linear-gradient(180deg, #f3efe8 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--line);
}

.gallery-walk__intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.25rem;
}

.gallery-walk__brand {
  margin: 0;
  font-family: var(--font-signature);
  font-size: clamp(2.4rem, 7vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.gallery-walk__title {
  margin: 0.35rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-walk__lede {
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--text-lead);
  line-height: 1.55;
}

.gallery-walk__viewport {
  position: relative;
  height: min(52vh, 30rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  perspective: 1200px;
  cursor: grab;
}

.gallery-walk__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gallery-walk__viewport::-webkit-scrollbar {
  height: 8px;
}

.gallery-walk__viewport::-webkit-scrollbar-thumb {
  background: rgba(20, 20, 20, 0.25);
}

.gallery-walk__hall {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  min-width: max-content;
  height: 100%;
  padding: 0 max(12vw, 4rem);
  transform-style: preserve-3d;
}

.gallery-walk__ceiling,
.gallery-walk__floor {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.gallery-walk__ceiling {
  top: 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.1), transparent);
}

.gallery-walk__floor {
  bottom: 0;
  height: 28%;
  background:
    linear-gradient(0deg, rgba(90, 70, 45, 0.22), transparent 70%),
    repeating-linear-gradient(
      90deg,
      rgba(20, 20, 20, 0.04) 0 2px,
      transparent 2px 56px
    );
  transform: rotateX(68deg);
  transform-origin: bottom center;
}

.gallery-walk__frame {
  appearance: none;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: min(52vw, 19rem);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
  scroll-snap-align: center;
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease);
}

.gallery-walk__frame--left {
  transform: rotateY(14deg) translateZ(12px);
  align-self: center;
  margin-top: -0.85rem;
}

.gallery-walk__frame--right {
  transform: rotateY(-14deg) translateZ(12px);
  align-self: center;
  margin-top: 0.85rem;
}

.gallery-walk__frame:hover,
.gallery-walk__frame:focus-visible {
  transform: rotateY(0deg) translateZ(36px) scale(1.03);
  z-index: 5;
}

.gallery-walk__frame:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.gallery-walk__mat {
  display: block;
  padding: 0.7rem;
  background: #f7f3ec;
  border: 1px solid rgba(20, 20, 20, 0.14);
  box-shadow:
    0 22px 48px rgba(20, 20, 20, 0.22),
    0 2px 0 rgba(20, 20, 20, 0.08);
}

.gallery-walk__mat img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8e2d8;
}

.gallery-walk__frame--object .gallery-walk__mat,
.gallery-walk__frame--table .gallery-walk__mat,
.gallery-walk__frame--surface .gallery-walk__mat {
  padding: 0.45rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.gallery-walk__frame--object .gallery-walk__mat img,
.gallery-walk__frame--table .gallery-walk__mat img,
.gallery-walk__frame--surface .gallery-walk__mat img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 16px 28px rgba(20, 20, 20, 0.22));
}

.gallery-walk__plaque {
  display: grid;
  gap: 0.12rem;
  margin-top: 0.7rem;
  padding: 0 0.15rem;
}

.gallery-walk__plaque-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.25;
}

.gallery-walk__plaque-format {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.gallery-walk__plaque-price {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.gallery-walk__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-walk__nudge {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  min-height: 2.35rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-walk__nudge:hover,
.gallery-walk__nudge:focus-visible {
  border-color: var(--ink);
}

.gallery-walk__hint {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.gallery-walk__continue {
  text-align: center;
  margin: 1.1rem auto 0;
}

.shop-archive__catalog-head {
  text-align: center;
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
}

.shop-archive__catalog-title {
  margin: 0.2rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 500;
}

.shop-archive__catalog-lede {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.shop-archive--compact {
  padding-bottom: var(--space-section);
}

.shop-catalog-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.shop-catalog-list__item {
  border-bottom: 1px solid var(--line);
}

.shop-catalog-list__link {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem 0.15rem;
}

.shop-catalog-list__thumb {
  width: 3.5rem;
  height: 3.5rem;
  overflow: hidden;
  background: var(--bg-soft);
}

.shop-catalog-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-catalog-list__copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.shop-catalog-list__title {
  font-weight: 600;
  line-height: 1.3;
}

.shop-catalog-list__format {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.shop-catalog-list__price {
  font-size: 0.92rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.shop-catalog-list__link:hover .shop-catalog-list__title,
.shop-catalog-list__link:focus-visible .shop-catalog-list__title {
  color: var(--accent);
}

@media (max-width: 700px) {
  .gallery-walk__viewport {
    height: min(58vh, 28rem);
  }

  .gallery-walk__frame {
    width: min(72vw, 16.5rem);
  }

  .gallery-walk__frame--left,
  .gallery-walk__frame--right {
    transform: rotateY(0deg) translateZ(0);
    align-self: center;
    margin: 0;
  }

  .gallery-walk__floor {
    transform: none;
    height: 22%;
  }
}

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

  .gallery-walk__frame,
  .gallery-walk__frame:hover,
  .gallery-walk__frame:focus-visible {
    transition: none;
    transform: none;
  }
}

/* Gallery drawer */
.shop-gallery-drawer[hidden] {
  display: none !important;
}

.shop-gallery-drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
}

.shop-gallery-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.45);
}

.shop-gallery-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(100%, 28rem);
  height: 100%;
  max-height: 100%;
  overflow: auto;
  background: var(--white);
  box-shadow: -16px 0 48px rgba(20, 20, 20, 0.18);
  outline: none;
}

.shop-gallery-drawer__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.shop-gallery-drawer__media {
  padding: 1rem 1rem 0;
}

.shop-gallery-drawer__tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.shop-gallery-drawer__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.shop-gallery-drawer__panel-view {
  position: absolute;
  inset: 0;
}

.shop-gallery-drawer__panel-view[hidden] {
  display: none;
}

.shop-gallery-drawer__panel-view img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-gallery-drawer__panel-view--room .room-preview {
  height: 100%;
}

.shop-gallery-drawer__caption {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.shop-gallery-drawer__body {
  padding: 1.15rem 1.15rem 1.75rem;
}

.shop-gallery-drawer__format {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}

.shop-gallery-drawer__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.shop-gallery-drawer__price {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.shop-gallery-drawer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0 0.5rem;
}

.shop-gallery-drawer__status {
  min-height: 1.25em;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.shop-gallery-drawer__story {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.shop-gallery-drawer__story-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 0.55rem;
  align-items: start;
}

.shop-gallery-drawer__story-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-soft);
}

.shop-gallery-drawer__story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-gallery-drawer__story-title {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.shop-gallery-drawer__story-lede {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

@media (max-width: 640px) {
  .shop-gallery-drawer__panel {
    top: auto;
    bottom: 0;
    width: 100%;
    height: min(92dvh, 100%);
    max-height: 100%;
    border-radius: 14px 14px 0 0;
  }

  .shop-gallery-drawer__story-row {
    grid-template-columns: 4.75rem minmax(0, 1fr);
  }
}


body.shop-gallery-drawer-open {
  overflow: hidden;
}

body.shop-gallery-drawer-open .site-header {
  z-index: 110;
  background: rgba(255, 255, 255, 0.98);
}

.product-edition-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin: 0.35rem 0 0.85rem;
  padding: 0;
  list-style: none;
}

.product-edition-cues li {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 0.85rem, 0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.product-card__edition {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

/* Photographer note */
.photographer-note {
  margin: 1.25rem 0 0;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--ink);
  background: var(--bg-soft);
}

.photographer-note__eyebrow {
  margin: 0 0 0.55rem;
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-muted);
}

.photographer-note__quote {
  margin: 0;
}

.photographer-note__quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.photographer-note__quote cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.photographer-note__audio {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin-top: 0.85rem;
}

/* This month */
.this-month {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.this-month__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 1.5rem;
}

.this-month__card a {
  display: grid;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
}

.this-month__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.this-month__date {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.this-month__card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

/* Talks page — promotional */
.page-main--talks {
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  padding-bottom: 0;
}

.talks-cms {
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  max-width: 42rem;
}

.talks-cms > *:first-child {
  margin-top: 0;
}

.talks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.talks-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  margin: 0 auto clamp(2.75rem, 6vw, 4rem);
}

.talks-offer--work {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.talks-offer--work .talks-offer__media {
  order: 2;
}

.talks-offer--work .talks-offer__copy {
  order: 1;
}

.talks-offer__media {
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}

.talks-offer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talks-offer__copy {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.talks-offer__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.talks-offer__copy > p {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-muted);
  line-height: 1.6;
  font-size: 1.02rem;
}

.talks-offer__list {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.talks-offer__list li {
  padding-left: 1rem;
  position: relative;
}

.talks-offer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 1px;
  background: var(--ink-soft);
}

.talks-offer__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin: 0.15rem 0 0.35rem;
  font-size: var(--text-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}

.talks-offer__copy .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.talks-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
  padding-top: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}

.talks-proof__media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}

.talks-proof__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talks-proof__copy {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.talks-proof__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 500;
}

.talks-proof__copy > p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 34rem;
}

.talks-proof__copy .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.talks-page__cta {
  margin: 0;
}

.talks-page__cta .commissions-inner {
  max-width: var(--page-max);
}

.talks-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: flex-end;
}

.talks-page__cta .btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.talks-page__cta .btn-ghost:hover {
  border-color: var(--ink);
}

@media (max-width: 900px) {
  .this-month__grid {
    grid-template-columns: 1fr;
  }

  .talks-offer,
  .talks-offer--work,
  .talks-proof {
    grid-template-columns: 1fr;
  }

  .talks-offer--work .talks-offer__media,
  .talks-offer--work .talks-offer__copy {
    order: initial;
  }

  .talks-page__cta-actions {
    justify-content: flex-start;
  }
}

/* Accessibility tools — compact, bottom-left; never blocks the page */
.a11y-tools {
  position: fixed;
  /* Default: bottom-right so footer copyright / Cookie settings stay readable. */
  right: max(0.75rem, env(safe-area-inset-right));
  left: auto;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 180;
  font-family: var(--font-body);
  pointer-events: none;
}

.a11y-tools__toggle,
.a11y-tools__panel {
  pointer-events: auto;
}

.a11y-tools__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.75rem 0.45rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.08);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.a11y-tools__toggle:hover,
.a11y-tools__toggle:focus-visible {
  border-color: var(--ink);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.a11y-tools.is-open .a11y-tools__toggle {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.a11y-tools__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.a11y-tools__toggle-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.a11y-tools__panel {
  position: absolute;
  right: 0;
  left: auto;
  bottom: calc(100% + 0.55rem);
  width: min(20.5rem, calc(100vw - 1.5rem));
  max-height: min(70vh, 28rem);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.12);
}

body.dw-cookie-banner-visible .a11y-tools__panel {
  right: auto;
  left: 0;
}

.a11y-tools__panel[hidden] {
  display: none;
}

.a11y-tools__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.a11y-tools__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.a11y-tools__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: -0.25rem -0.35rem 0 0;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.a11y-tools__close:hover,
.a11y-tools__close:focus-visible {
  color: var(--ink);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.a11y-tools__lede {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.a11y-tools__group {
  margin-bottom: 0.95rem;
}

.a11y-tools__label {
  margin: 0 0 0.45rem;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink-soft);
}

.a11y-tools__segment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.a11y-tools__seg {
  min-height: 2.4rem;
  padding: 0.45rem 0.35rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.a11y-tools__seg:last-child {
  border-right: 0;
}

.a11y-tools__seg.is-active {
  background: var(--ink);
  color: var(--white);
}

.a11y-tools__seg:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  z-index: 1;
}

.a11y-tools__skip:focus-visible,
.a11y-tools__reset:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.a11y-tools__switch:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.a11y-tools__options {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.a11y-tools__options li {
  border-bottom: 1px solid var(--line);
}

.a11y-tools__switch {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 0;
  cursor: pointer;
}

.a11y-tools__switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.a11y-tools__switch-ui {
  position: relative;
  width: 2.4rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.a11y-tools__switch-ui::after {
  content: "";
  position: absolute;
  top: 0.12rem;
  left: 0.12rem;
  width: 0.95rem;
  height: 0.95rem;
  background: var(--ink-muted);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.a11y-tools__switch input:checked + .a11y-tools__switch-ui {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.a11y-tools__switch input:checked + .a11y-tools__switch-ui::after {
  transform: translateX(1rem);
  background: var(--accent);
}

.a11y-tools__switch input:focus-visible + .a11y-tools__switch-ui {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.a11y-tools__switch-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.a11y-tools__switch-title {
  font-size: 0.92rem;
  font-weight: 600;
}

.a11y-tools__switch-hint {
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.a11y-tools__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.a11y-tools__skip,
.a11y-tools__reset {
  font-size: 0.8rem;
  font-weight: 600;
}

.a11y-tools__skip {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.a11y-tools__skip:hover,
.a11y-tools__skip:focus-visible {
  color: var(--accent);
}

.a11y-tools__reset {
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.a11y-tools__reset:hover,
.a11y-tools__reset:focus-visible {
  color: var(--ink);
}

html.dw-a11y--text-lg {
  font-size: 112.5%;
}

html.dw-a11y--text-xl {
  font-size: 125%;
}

html.dw-a11y--contrast {
  --bg: #ffffff;
  --bg-soft: #f2f2f2;
  --bg-warm: #f7f7f7;
  --ink: #000000;
  --ink-muted: #1f1f1f;
  --ink-soft: #111111;
  --line: rgba(0, 0, 0, 0.4);
  --accent: #6b4f0c;
  --accent-soft: rgba(107, 79, 12, 0.18);
  --white: #ffffff;
}

html.dw-a11y--contrast body {
  background: #ffffff;
  color: #000000;
}

html.dw-a11y--contrast a:focus-visible,
html.dw-a11y--contrast button:focus-visible,
html.dw-a11y--contrast input:focus-visible,
html.dw-a11y--contrast select:focus-visible,
html.dw-a11y--contrast textarea:focus-visible {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

html.dw-a11y--links a[href] {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

html.dw-a11y--links .site-nav a,
html.dw-a11y--links .brand,
html.dw-a11y--links .btn,
html.dw-a11y--links .a11y-tools__toggle,
html.dw-a11y--links .a11y-tools__seg {
  text-decoration: none;
}

html.dw-a11y--readable body {
  letter-spacing: 0.02em;
  word-spacing: 0.06em;
  line-height: 1.7;
}

html.dw-a11y--readable p,
html.dw-a11y--readable li,
html.dw-a11y--readable .entry-content,
html.dw-a11y--readable .story-body {
  line-height: 1.75;
}

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

@media (max-width: 520px) {
  .a11y-tools__toggle-label {
    display: none;
  }

  .a11y-tools__toggle {
    width: 2.5rem;
    height: 2.5rem;
    min-height: 2.5rem;
    padding: 0;
    justify-content: center;
  }

  .a11y-tools__panel {
    width: min(18.5rem, calc(100vw - 1.25rem));
    max-height: min(62vh, 24rem);
  }
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #2a2a2a;
  color: var(--white);
}

/* Cookie consent — compact bottom-right card; page stays fully usable */
.cookie-consent {
  position: fixed;
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: auto;
  z-index: 190;
  width: min(22rem, calc(100vw - 1.5rem));
  max-height: min(70vh, 26rem);
  overflow: auto;
  overscroll-behavior: contain;
  transform: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.12);
  color: var(--ink);
  pointer-events: auto;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__inner {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem 0.8rem;
}

@media (min-width: 720px) {
  .cookie-consent__inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

.cookie-consent__title {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.cookie-consent__text {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.cookie-consent__text a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: flex-start;
}

.cookie-consent__btn {
  min-height: 2.15rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
}

.cookie-consent__manage {
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.cookie-consent__panel {
  padding: 0 0.95rem 0.9rem;
  border-top: 1px solid var(--line);
}

.cookie-consent__panel[hidden] {
  display: none;
}

.cookie-consent__panel-title {
  margin: 0.7rem 0 0.55rem;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.cookie-consent__option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  margin: 0 0 0.55rem;
  cursor: pointer;
}

.cookie-consent__option strong {
  display: block;
  font-size: 0.82rem;
}

.cookie-consent__hint {
  display: block;
  margin-top: 0.1rem;
  color: var(--ink-muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.cookie-consent__panel-actions {
  display: flex;
  justify-content: flex-end;
}

/* When the cookie card is up (bottom-right), park Access on the left instead. */
body.dw-cookie-banner-visible .a11y-tools {
  left: max(0.75rem, env(safe-area-inset-left));
  right: auto;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
}

/* Keep a little room for the floating Access control / home indicator.
   Do not reserve a large empty block; those controls overlay the footer. */
.site-footer {
  padding-bottom: calc(clamp(1rem, 2vw, 1.35rem) + env(safe-area-inset-bottom, 0px));
}

body.dw-cookie-banner-visible {
  scroll-padding-bottom: 6rem;
}

body.dw-cookie-banner-visible .site-footer {
  padding-bottom: calc(clamp(1rem, 2vw, 1.35rem) + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 520px) {
  .a11y-tools__toggle {
    padding: 0.45rem;
    min-width: 2.5rem;
    justify-content: center;
  }

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

  .cookie-consent {
    right: max(0.65rem, env(safe-area-inset-right));
    left: auto;
    width: min(17.5rem, calc(100vw - 4.25rem));
  }

  body.dw-cookie-banner-visible .cookie-consent {
    width: min(16.5rem, calc(100vw - 4.5rem));
  }
}

.footer-policy-links__button {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.footer-policy-links__button:hover,
.footer-policy-links__button:focus-visible {
  color: #fff;
}

.withdraw-page {
  max-width: 40rem;
  padding-bottom: var(--space-section);
}

.withdraw-page__copy {
  margin-bottom: 1.5rem;
}

.dw-store-legal-note {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.dw-store-legal-note a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.dw-store-legal-note--thankyou {
  margin-top: 1.25rem;
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}

.form-status--error {
  border: 1px solid rgba(140, 40, 40, 0.35);
  background: rgba(140, 40, 40, 0.08);
  color: #5c1f1f;
}

/* Store: cart, checkout, account */
.page-main--store {
  padding-top: clamp(1.35rem, 3.5vw, 2.25rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.page-main--store .single-header {
  max-width: 1100px;
  margin-inline: auto;
}

.page-main--store .single-header h1 {
  margin-bottom: 0.35rem;
}

.store-page-lede {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.store-page.single-content,
.store-page .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 clamp(1.25rem, 3vw, 2rem);
}

/* Basket: items left, summary right */
@media (min-width: 900px) {
  .woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 22rem);
    column-gap: clamp(1.75rem, 4vw, 2.75rem);
    row-gap: 1.25rem;
    align-items: start;
  }

  .woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
  .woocommerce-cart .woocommerce > .woocommerce-info,
  .woocommerce-cart .woocommerce > .woocommerce-message,
  .woocommerce-cart .woocommerce > .woocommerce-error {
    grid-column: 1 / -1;
  }

  .woocommerce-cart .woocommerce-cart-form {
    grid-column: 1;
    grid-row: 2;
  }

  .woocommerce-cart .cart-collaterals {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    position: sticky;
    top: calc(var(--header-h, 4.5rem) + 1rem);
  }

  .woocommerce-cart .cart_totals {
    max-width: none;
    margin-left: 0;
  }
}

.woocommerce-cart table.cart {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.woocommerce-checkout table.shop_table {
  border-collapse: collapse;
  width: 100%;
}

.woocommerce-cart table.cart th,
.woocommerce-checkout table.shop_table th {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0.4rem 0.7rem;
  text-align: left;
}

.woocommerce-cart table.cart td,
.woocommerce-checkout table.shop_table td {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0.4rem;
  vertical-align: middle;
}

.woocommerce-cart table.cart .product-remove {
  width: 2.25rem;
  padding-left: 0;
  padding-right: 0.15rem;
}

.woocommerce-cart table.cart .product-thumbnail {
  width: 4.75rem;
  padding-right: 0.65rem;
}

.woocommerce-cart table.cart .product-thumbnail img {
  display: block;
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  background: var(--bg-warm);
}

.woocommerce-cart table.cart .product-name {
  width: auto;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-quantity,
.woocommerce-cart table.cart .product-subtotal {
  width: 5.5rem;
  text-align: right;
}

.woocommerce-cart table.cart th.product-price,
.woocommerce-cart table.cart th.product-quantity,
.woocommerce-cart table.cart th.product-subtotal {
  text-align: right;
}

.woocommerce-cart table.cart .product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1;
}

.woocommerce-cart table.cart .product-remove a:hover,
.woocommerce-cart table.cart .product-remove a:focus-visible {
  color: var(--ink);
  background: var(--bg-soft);
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.woocommerce-cart table.cart .product-name a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.35;
}

.woocommerce-cart table.cart .product-name a:hover {
  color: var(--accent);
}

.woocommerce-cart table.cart .quantity {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.woocommerce-cart table.cart .quantity .qty {
  width: 3.25rem;
  min-height: 2.35rem;
  padding: 0.35rem 0.25rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  text-align: center;
  box-sizing: border-box;
}

.woocommerce-cart table.cart td.actions {
  border-bottom: none;
  padding: 1.15rem 0 0.35rem;
}

/* Keep the actions cell as a real table cell so its border does not collapse
   into a short "orphan" line under the coupon / update controls. */
.woocommerce-cart .actions {
  display: table-cell;
  vertical-align: middle;
}

.woocommerce-cart .coupon {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: stretch;
  margin: 0;
  max-width: min(100%, 26rem);
  vertical-align: middle;
}

.woocommerce-cart .coupon .input-text {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  box-sizing: border-box;
}

.woocommerce-cart .coupon .button,
.woocommerce-cart button[name="update_cart"] {
  flex: 0 0 auto;
  width: auto;
  min-height: 2.5rem;
  margin: 0;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
  box-shadow: none;
  vertical-align: middle;
}

.woocommerce-cart .coupon .button:hover,
.woocommerce-cart .coupon .button:focus-visible,
.woocommerce-cart button[name="update_cart"]:hover,
.woocommerce-cart button[name="update_cart"]:focus-visible {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: rgba(20, 20, 20, 0.28);
}

.woocommerce-cart button[name="update_cart"] {
  float: right;
}

.woocommerce-cart button[name="update_cart"]:disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.woocommerce-cart td.actions::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 640px) {
  .woocommerce-cart button[name="update_cart"] {
    float: none;
    display: inline-flex;
    margin-top: 0.65rem;
  }

  .woocommerce-cart button[name="update_cart"]:disabled {
    display: none;
  }

  .woocommerce-cart .coupon {
    display: flex;
    max-width: none;
    width: 100%;
  }
}

.woocommerce-cart .cart-collaterals {
  margin-top: 1.75rem;
}

.woocommerce-cart .cart_totals {
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
  padding: 1.15rem 1.15rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.woocommerce-cart .cart_totals h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.woocommerce-cart .cart_totals table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 0.95rem;
}

.woocommerce-cart .cart_totals th {
  width: 38%;
  color: var(--ink-muted);
  font-weight: 500;
  padding-right: 0.75rem;
}

.woocommerce-cart .cart_totals td {
  text-align: right;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 0;
  padding-top: 0.85rem;
}

.woocommerce-cart .cart_totals .shipping td {
  text-align: left;
}

.woocommerce-cart .cart_totals .shipping ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-cart .cart_totals .shipping li {
  margin: 0 0 0.4rem;
  padding: 0;
}

.woocommerce-cart .cart_totals .shipping label {
  display: inline;
  font-weight: 400;
}

.woocommerce-cart .cart_totals .woocommerce-shipping-destination {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.woocommerce-cart .cart_totals .shipping-calculator-button {
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.woocommerce-cart .dw-store-shipping-hint,
.woocommerce-cart .woocommerce-info.dw-store-shipping-hint {
  margin: 0.35rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  list-style: none;
}

.woocommerce-cart .shipping-calculator-form {
  margin-top: 0.75rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
}

.woocommerce-cart .shipping-calculator-form .form-row {
  margin: 0 0 0.65rem;
}

.woocommerce-cart .shipping-calculator-form .button {
  width: 100%;
  min-height: 2.5rem;
}

.woocommerce-cart .cart-empty,
.woocommerce-cart .wc-empty-cart-message {
  margin-bottom: 0.75rem;
}

.woocommerce-cart .return-to-shop {
  margin-top: 1.25rem;
  margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.woocommerce-cart .cart_totals .dw-store-delivery-note,
.woocommerce-cart .cart_totals .dw-store-legal-note,
.woocommerce-cart .wc-proceed-to-checkout .dw-store-delivery-note,
.woocommerce-cart .wc-proceed-to-checkout .dw-store-legal-note {
  margin: 0.75rem 0;
  text-align: left;
  font-size: 0.78rem;
  line-height: 1.45;
}

.woocommerce-cart .wc-proceed-to-checkout .dw-store-delivery-note {
  margin-top: 0;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  margin-top: 0.35rem;
}

.woocommerce-cart .wc-proceed-to-checkout {
  margin-top: 1rem;
}

.woocommerce-cart .checkout-button,
.woocommerce-checkout #place_order {
  width: 100%;
  max-width: none;
}

.woocommerce-cart .checkout-button.button {
  border: 0;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.woocommerce-cart .checkout-button.button:hover,
.woocommerce-cart .checkout-button.button:focus-visible {
  background: #000;
  color: #fff;
}

.woocommerce-cart .checkout-button {
  min-height: 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  margin-top: 1.5rem;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-account input.input-text,
.woocommerce-account select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  box-sizing: border-box;
}

.woocommerce-checkout #place_order,
.woocommerce-cart .checkout-button,
.woocommerce-account .button,
.woocommerce button.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce-account .button:hover,
.woocommerce button.button.alt:hover {
  background: #2a2a2a;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout .woocommerce-privacy-policy-text {
  margin: 1rem 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.dw-store-delivery-note,
.dw-checkout-trust {
  margin: 1rem 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.dw-checkout-trust__links {
  display: flex;
  gap: 0.85rem;
  margin: 0.35rem 0 0;
}

.dw-checkout-trust__links a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.dw-thankyou {
  margin: 1.75rem 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.dw-thankyou__title {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.dw-thankyou__steps {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.dw-thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  color: var(--accent);
}

.dw-track-result {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 899px) {
  .woocommerce-cart .cart_totals {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .woocommerce-cart table.cart {
    table-layout: auto;
  }

  .woocommerce-cart table.cart thead {
    display: none;
  }

  .woocommerce-cart table.cart,
  .woocommerce-cart table.cart tbody,
  .woocommerce-cart table.cart tr,
  .woocommerce-cart table.cart td {
    display: block;
    width: 100%;
  }

  .woocommerce-cart table.cart tr {
    position: relative;
    margin: 0 0 0.85rem;
    padding: 0.9rem 0.9rem 0.9rem 3.15rem;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .woocommerce-cart table.cart td {
    border: 0;
    padding: 0.25rem 0;
  }

  .woocommerce-cart table.cart .product-remove {
    position: absolute;
    top: 0.7rem;
    left: 0.55rem;
    width: auto;
    padding: 0;
  }

  .woocommerce-cart table.cart .product-thumbnail {
    position: absolute;
    top: 0.9rem;
    left: 2.55rem;
    width: auto;
    padding: 0;
  }

  .woocommerce-cart table.cart .product-thumbnail img {
    width: 3.35rem;
    height: 3.35rem;
  }

  .woocommerce-cart table.cart .product-name {
    min-height: 3.35rem;
    padding: 0.15rem 0 0.45rem 4.1rem;
    margin-bottom: 0.15rem;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .woocommerce-cart table.cart .product-price,
  .woocommerce-cart table.cart .product-quantity,
  .woocommerce-cart table.cart .product-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: auto;
    text-align: left;
    padding: 0.35rem 0;
    border-top: 1px solid var(--line);
  }

  .woocommerce-cart table.cart .product-price::before {
    content: "Price";
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  .woocommerce-cart table.cart .product-quantity::before {
    content: "Qty";
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  .woocommerce-cart table.cart .product-subtotal::before {
    content: "Subtotal";
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  .woocommerce-cart table.cart .quantity {
    justify-content: flex-end;
  }

  .woocommerce-cart table.cart .quantity .qty {
    width: 3.5rem;
  }

  .woocommerce-cart .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    align-items: stretch;
  }

  .woocommerce-cart .coupon {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    gap: 0.55rem;
  }

  .woocommerce-cart .coupon .input-text,
  .woocommerce-cart .coupon .button,
  .woocommerce-cart button[name="update_cart"],
  .woocommerce-cart .actions .button,
  .woocommerce-cart .checkout-button {
    width: 100%;
    max-width: none;
    flex: none;
    margin-left: 0;
  }

  .woocommerce-cart button[name="update_cart"] {
    margin-left: 0;
  }

  .woocommerce-cart .cart_totals {
    padding: 1rem;
  }

  .woocommerce-cart .cart_totals .shipping ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .woocommerce-cart .cart_totals .shipping li {
    margin: 0 0 0.45rem;
  }

  .woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    max-width: none;
  }

  .woocommerce-cart table.cart .product-name {
    padding-left: 4.35rem;
  }

  .woocommerce-cart table.cart .product-thumbnail {
    left: 2.7rem;
  }
}

@media (min-width: 901px) {
  .woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
