/* Star rating (shop + product cards) */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.rating__stars {
  --rating: 5;
  --pct: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  width: 5.2em;
  height: 1em;
  font-size: 0.8rem;
  line-height: 1;
  background:
    linear-gradient(90deg, var(--gold) var(--pct), var(--rule) var(--pct));
  -webkit-mask: repeat-x left center / 1.04em 1em
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5l2.7 6.1 6.6.6-5 4.4 1.5 6.5L12 17.3 6.2 20.6l1.5-6.5-5-4.4 6.6-.6z'/%3E%3C/svg%3E");
  mask: repeat-x left center / 1.04em 1em
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.5l2.7 6.1 6.6.6-5 4.4 1.5 6.5L12 17.3 6.2 20.6l1.5-6.5-5-4.4 6.6-.6z'/%3E%3C/svg%3E");
}
.rating__count {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}

/* Shop filter / sort toolbar */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.5rem 0 0;
}
.shop-toolbar__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.shop-toolbar__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 0.25rem;
}
.shop-filter {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.shop-filter:hover { border-color: var(--gold); color: var(--ink); }
.shop-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px var(--gold);
}
.shop-filter.is-active:hover { color: var(--cream); }
.shop-filter:focus-visible,
.shop-sort:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.shop-sort {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.45rem 2rem 0.45rem 0.95rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B8590' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 0.9em;
}
.shop-sort:hover { border-color: var(--gold); }
@media (max-width: 640px) {
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
}

.shop-empty {
  text-align: center;
  max-width: 30rem;
  margin: 4rem auto;
  padding: 2rem 1rem;
}
.shop-empty svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.shop-empty h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.shop-empty p {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.shop-empty__reset {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.shop-empty__reset:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.shop-empty__reset:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.body-prose p { max-width: 60ch; margin: 0 0 1rem; color: var(--ink-soft); }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 2.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  text-align: center;
}
/* Hover arrow sits in the right padding zone, absolutely positioned, so the
   label stays perfectly centered at rest and on hover. */
.btn::after {
  content: '\2192';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translate(-8px, -50%);
  font-size: 1rem;
  letter-spacing: 0;
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.btn:hover::after { opacity: 1; transform: translate(0, -50%); }
.btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

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

.btn--gold {
  background: var(--gold-text);
  color: var(--cream);
  border-color: var(--gold-text);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--cream); }

.btn--light { color: var(--cream); border-color: rgba(249, 248, 244, 0.75); }
.btn--light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn--ghost {
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  letter-spacing: 0.2em;
}
.btn--ghost::after { display: none; }
.btn--ghost:hover { background: none; border-color: var(--gold); color: var(--gold); }

/* Containers */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }

section { padding: var(--space-xl) 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 248, 244, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  /* Hello Elementor's header-footer.css sets padding-block:1rem on .site-header
     (class-name collision with this bespoke header), adding 32px of unwanted
     height vs the reference. Our design puts all padding on .site-header__inner. */
  padding-block: 0;
  display: block;
}
/* The header inner is an Elementor container, which carries `.e-con.e-flex`
   (display:flex via --display:flex) at the same single-class specificity as a
   bare `.site-header__inner` rule — a tie decided only by stylesheet order.
   Scope to `.site-header .site-header__inner` so the grid wins regardless of
   load order and survives Elementor CSS regeneration. */
.site-header .site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.site-nav { display: flex; gap: 2.25rem; align-items: center; }
.site-nav--left { justify-content: flex-end; }
.site-nav--right { justify-content: flex-start; }
.site-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
  padding: 0.5rem 0;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-text); }

/* Header dropdown (e.g. Shop -> product categories). The trigger keeps the
   same uppercase-link styling; the panel is a cream card that opens on hover or
   keyboard focus. A transparent ::before bridges the visual gap below the
   trigger so :hover survives the cursor traversal into the panel. */
.has-dropdown { position: relative; display: inline-flex; align-items: center; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 0.4em; }
.has-dropdown__caret { transition: transform 0.2s var(--ease); opacity: 0.7; }
.has-dropdown:hover > a .has-dropdown__caret,
.has-dropdown:focus-within > a .has-dropdown__caret { transform: rotate(180deg); }

.site-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 200;
}
/* Hover-gap bridge: invisible strip that fills the 6px gap so moving the
   cursor from the trigger down into the panel does not break :hover. */
.has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.has-dropdown:hover .site-dropdown,
.has-dropdown:focus-within .site-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(10px);
}
.site-dropdown__link {
  display: block;
  padding: 0.6rem 0.85rem !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--ink-soft) !important;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.site-dropdown__link:hover {
  background: var(--cream-2);
  color: var(--gold-text) !important;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: none;
  color: var(--ink);
  text-align: center;
  white-space: nowrap;
  display: block;
  position: relative;
}
.brand-mark img { height: 78px; width: auto; margin: 0 auto; display: block; }

.header-utility {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.site-header__inner { position: relative; }
.header-utility a:hover { color: var(--gold); }
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--cream);
}
.cart-pill__count { color: var(--gold); font-weight: 600; }
/* Hide the count when zero — luxury cart icons are silent until used */
.cart-pill__count:empty,
.cart-pill__count:not([data-cart-count]),
.cart-pill[data-empty="true"] .cart-pill__count { display: none; }

/* New nav cart icon — sits as the 4th right-nav item, balances 4/4 with left */
.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  margin-left: 0.25rem;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.cart-icon:hover { color: var(--gold); }
.cart-icon svg { width: 20px; height: 20px; display: block; }
.cart-icon__count {
  position: absolute;
  top: -2px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-icon__count:empty { display: none; }
.cart-icon[data-empty="true"] .cart-icon__count { display: none; }

/* Mobile bag icon lives in .header-utility (always-visible bar); hidden on
   desktop where the nav cart icon shows instead. Surfaced ≤980px below. */
.cart-icon--mobile { display: none; }

@media (max-width: 980px) {
  .site-header .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .site-nav { display: none; }
  .brand-mark img { height: 56px; }
  .header-utility { position: static; transform: none; }
  .cart-icon--mobile { display: inline-flex; color: var(--ink); }
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 880px;
}
.hero__eyebrow {
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0 0 2rem;
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold);
  display: block;
  margin-top: 0.25rem;
}
.hero__sub {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  letter-spacing: 0.02em;
  color: rgba(249, 248, 244, 0.88);
  max-width: 38rem;
  margin: 0 auto 3rem;
  line-height: 1.55;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249, 248, 244, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(249, 248, 244, 0.5);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   Reveal / motion (luxury slowness)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Hero text fades up on load */
  .hero__inner > * {
    opacity: 0;
    transform: translateY(14px);
    animation: heroIn 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .hero__inner > *:nth-child(1) { animation-delay: 0.2s; }
  .hero__inner > *:nth-child(2) { animation-delay: 0.5s; }
  .hero__inner > *:nth-child(3) { animation-delay: 0.8s; }

  @keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Hero image subtle scale-in for slow-luxury feel */
  .hero__bg img {
    animation: heroBgIn 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    transform-origin: center;
  }
  @keyframes heroBgIn {
    from { transform: scale(1.04); opacity: 0.4; }
    to { transform: scale(1); opacity: 0.55; }
  }

  /* Number figures fade up when row enters viewport */
  .numbers .number {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .numbers .number:nth-child(1) { transition-delay: 0.05s; }
  .numbers .number:nth-child(2) { transition-delay: 0.2s; }
  .numbers .number:nth-child(3) { transition-delay: 0.35s; }
  .numbers .number:nth-child(4) { transition-delay: 0.5s; }
  .numbers.is-in .number { opacity: 1; transform: translateY(0); }
}

/* Decorative flourish (vine motif, inline SVG via .flourish) */
.flourish {
  display: block;
  margin: 0 auto 2rem;
  width: 48px;
  height: auto;
  opacity: 0.75;
}
.flourish--light { filter: invert(1) opacity(0.7); }

/* Section heading block */
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head .lead { margin-top: 1rem; }

/* Two-column editorial block */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.editorial--reverse { grid-template-columns: 1fr 1fr; }
.editorial--reverse .editorial__media { order: 2; }
.editorial__media img {
  width: 100%;
  height: clamp(360px, 50vw, 620px);
  object-fit: cover;
}
.editorial__media--contain {
  display: flex;
  justify-content: center;
}
.editorial__media--contain img {
  width: auto;
  height: auto;
  max-width: 300px;
  max-height: 360px;
  object-fit: contain;
}
.editorial__body { padding: 2rem 0; }
.editorial__body .display { margin-bottom: 1.5rem; }
@media (max-width: 880px) {
  .editorial, .editorial--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .editorial--reverse .editorial__media { order: 0; }
}

/* Category grid (homepage 6-tile) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.category-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.category-tile:hover img { transform: scale(1.06); }

/* Dual-layer overlay for legibility on any photo background:
   Layer 1, soft ink veil over entire tile (very subtle, deepens warmly on hover).
   Layer 2, strong gradient from bottom for text zone. */
.category-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 46, 53, 0.0) 50%, rgba(36, 46, 53, 0.55) 80%, rgba(36, 46, 53, 0.85) 100%);
  z-index: 1;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.category-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(36, 46, 53, 0.08);
  z-index: 1;
  transition: background 0.4s var(--ease);
  pointer-events: none;
}
.category-tile:hover::after { background: rgba(36, 46, 53, 0.18); }

/* Gold hairline inner-frame for every category tile (luxury jewel-box detail) */
.category-tile {
  isolation: isolate;
}
.category-tile::before, .category-tile::after { z-index: 1; }
.category-tile__frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(185, 141, 88, 0.55);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s var(--ease);
}
.category-tile:hover .category-tile__frame { border-color: rgba(185, 141, 88, 0.85); }

.category-tile__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 2rem 2.5rem;
  color: var(--cream);
  text-align: center;
  z-index: 3;
}
/* Thin gold hairline above the label, signature luxury detail */
.category-tile__label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.category-tile__label h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  letter-spacing: 0.22em;
  font-weight: 400;
  margin: 0 0 0.5rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.category-tile__label span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(249, 248, 244, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
@media (max-width: 880px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .category-grid { grid-template-columns: 1fr; } }

/* Product grid (shop) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  transition: transform 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-4px); }
.product-card--soon { opacity: 0.85; cursor: pointer; }
.product-card--soon .product-card__media { position: relative; }
.product-card--soon .product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(36, 46, 53, 0.18);
}
.product-card--soon::after {
  content: 'By allocation';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.product-card { position: relative; }
.product-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-2);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__body { padding: 1.25rem 0.25rem; text-align: center; }
.product-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 0.5rem;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--ink);
  line-height: 1.2;
}
.product-card__price {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--gold-deep);
}
.product-card__price del { color: var(--ink-mute); margin-right: 0.5rem; font-size: 0.95em; font-weight: 500; }

/* Shop section dividers */
.shop-section { padding: 5rem 0; border-bottom: 1px solid var(--rule); }
.shop-section:last-child { border-bottom: 0; }
.shop-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1rem;
}
.shop-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: 0.24em;
  font-weight: 400;
  margin: 0;
  text-transform: capitalize;
}
.shop-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}
.shop-anchors a {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s var(--ease);
}
.shop-anchors a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* PDP */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  padding: var(--space-xl) 0;
  align-items: start;
}
.pdp > * { min-width: 0; }
.pdp__media { position: sticky; top: 100px; }
.pdp__media__frame {
  position: relative;
  overflow: hidden;
}
.pdp__hero {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream-2);
  transition: opacity 0.4s var(--ease);
}
.pdp__hero.is-fading { opacity: 0; }
/* Slim luxury arrow controls that sit at the side edges of the hero image */
.pdp__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 248, 244, 0.85);
  border: 1px solid var(--rule);
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pdp__media__frame:hover .pdp__nav { opacity: 1; }
.pdp__nav:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.pdp__nav--prev { left: 1rem; }
.pdp__nav--next { right: 1rem; }
.pdp__nav svg { width: 18px; height: 18px; }
/* Image counter (luxury detail: "1 / 4") */
.pdp__counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(249, 248, 244, 0.85);
  padding: 0.4rem 0.9rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.pdp__media__frame:hover .pdp__counter { opacity: 1; }
.pdp__counter__sep { margin: 0 0.4rem; color: var(--gold); }
@media (max-width: 880px) {
  .pdp__nav, .pdp__counter { opacity: 1; }
  .pdp__nav { width: 38px; height: 38px; }
}
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.pdp__thumbs img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  background: var(--cream-2);
  transition: opacity 0.2s var(--ease);
}
.pdp__thumbs img { transition: opacity 0.2s var(--ease), outline 0.2s var(--ease), outline-offset 0.2s var(--ease); outline: 1px solid transparent; outline-offset: 0; }
.pdp__thumbs img:hover { opacity: 0.75; }
.pdp__thumbs img.is-active { outline: 1px solid var(--gold); outline-offset: 2px; opacity: 1; }
.pdp__body { padding-top: 1rem; }
.pdp__cat {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 1.25rem;
}
.pdp__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.25rem;
}
.pdp__price {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold-text);
  margin: 0 0 2rem;
}
.pdp__price del { color: var(--ink-mute); margin-right: 0.75rem; font-size: 0.85em; }
/* Batch tag — scarcity + provenance signal between price and short description */
.pdp__batch {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  margin: 0 0 2rem;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.pdp__batch__no { color: var(--gold-text); font-weight: 600; }
.pdp__batch__sep { color: var(--gold-text); opacity: 0.55; }
.pdp__batch__lot, .pdp__batch__date { color: var(--ink-soft); }

.pdp__short {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 2.5rem;
}
.pdp__variants {
  display: flex;
  gap: 0.75rem;
  margin: 0 0 2rem;
  flex-wrap: wrap;
}
.pdp__variant {
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--rule);
  background: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.pdp__variant:hover { border-color: var(--ink); }
.pdp__variant[aria-pressed="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pdp__add {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0 2.5rem;
}
.pdp__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--rule);
}
.pdp__qty button { padding: 0.5rem 1rem; color: var(--ink-soft); }
.pdp__qty input {
  width: 3rem;
  text-align: center;
  border: 0;
  background: transparent;
  padding: 0.85rem 0;
}
.pdp__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.pdp__meta strong { color: var(--ink); font-weight: 500; }

/* PDP tabs */
.pdp-tabs { background: var(--cream-2); padding: var(--space-l) 0; }
.pdp-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.pdp-tabs__nav button {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  margin-bottom: -1.5rem;
  white-space: nowrap;
}
.pdp-tabs__nav button[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.pdp-tabs__panel { padding: 1rem 0; max-width: 70ch; }
.pdp-tabs__panel:not([data-active]) { display: none; }
.pdp-tabs__panel h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 1.5rem 0 0.5rem;
}
.pdp-tabs__panel p { margin: 0 0 1rem; color: var(--ink-soft); }
.pdp-detail-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}
@media (max-width: 560px) { .pdp-detail-list { grid-template-columns: 1fr; } }
.pdp-detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--rule);
  font-size: 0.95rem;
}
.pdp-detail-list span:first-child { color: var(--ink-mute); }
.pdp-detail-list span:last-child { color: var(--ink); font-weight: 500; text-align: right; overflow-wrap: anywhere; }

@media (max-width: 880px) {
  .pdp { grid-template-columns: 1fr; gap: 2rem; }
  .pdp__media { position: static; }
}

/* Trust strip */
.trust-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.trust-strip__item h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 1rem 0 0.5rem;
  color: var(--gold);
}
.trust-strip__item p {
  font-size: 0.875rem;
  color: rgba(249, 248, 244, 0.75);
  margin: 0;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.trust-strip__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  color: var(--gold);
}
@media (max-width: 720px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

/* Pull quote */
.pull-quote {
  text-align: center;
  padding: var(--space-l) 0;
  background: var(--cream-2);
}
.pull-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 36ch;
  margin: 1.5rem auto 1.5rem;
}
.pull-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Lab table (provenance) */
.lab-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.lab-table th, .lab-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}
.lab-table th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.lab-table tr:hover td { background: var(--cream-2); color: var(--ink); }
.lab-table tr:hover td a { color: var(--gold-deep); }
.section--dark .lab-table tr:hover td { background: rgba(249, 248, 244, 0.92); color: var(--ink); }
.section--dark .lab-table tr:hover td a { color: var(--gold-deep); }

/* Reference-value cards: clean numbers, no certificate clutter */
.ref-values {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}
.ref-values li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name num" "meta grade";
  align-items: baseline;
  gap: 0.2rem 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
.ref-values__name { grid-area: name; font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); }
.ref-values__meta { grid-area: meta; font-size: 0.8rem; color: var(--ink-mute); }
.ref-values__num { grid-area: num; font-family: var(--font-serif); font-size: 1.9rem; color: var(--gold-text); text-align: right; }
.ref-values__plus { font-size: 1.1rem; }
.ref-values__grade { grid-area: grade; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); text-align: right; }

/* Gift tiers */
.gift-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 880px) { .gift-tiers { grid-template-columns: 1fr; } }

/* Trade-partner grid: icon-led cards, scannable at a glance */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.partner-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.partner-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.partner-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.partner-card__icon svg { width: 22px; height: 22px; }
.partner-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0;
}
.partner-card p { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.partner-card--cta { background: var(--ink); border-color: var(--ink); }
.partner-card--cta h3 { color: var(--cream); }
.partner-card--cta p { color: rgba(249, 248, 244, 0.7); }
.partner-card--cta .partner-card__icon { border-color: var(--gold); color: var(--gold); }
.partner-card__link {
  margin-top: auto;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 2px;
}
@media (max-width: 1080px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .partner-grid { grid-template-columns: 1fr; } }
.gift-tier {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 2rem;
  text-align: center;
}
.gift-tier__img {
  aspect-ratio: 4 / 3;
  margin: -2rem -2rem 2rem;
  overflow: hidden;
}
.gift-tier__img img { width: 100%; height: 100%; object-fit: cover; }
.gift-tier h3 {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.gift-tier__price {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.gift-tier ul { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.gift-tier li {
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--rule);
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.gift-tier li:last-child { border-bottom: 0; }

/* Corporate form */
.corp-form {
  background: var(--cream-2);
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.corp-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.corp-form input, .corp-form textarea, .corp-form select {
  border: 1px solid var(--rule);
  background: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.corp-form input:focus, .corp-form textarea:focus, .corp-form select:focus {
  outline: 2px solid var(--gold);
  outline-offset: -1px;
  border-color: var(--gold);
}
.corp-form .full { grid-column: 1 / -1; }
@media (max-width: 720px) { .corp-form { grid-template-columns: 1fr; padding: 2rem 1.5rem; } }

/* Journal grid */
.journal-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.journal-feature img { width: 100%; height: 480px; object-fit: cover; }
@media (max-width: 880px) {
  .journal-feature {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.5rem 1.5rem 0;
    margin-bottom: 3.5rem;
  }
  .journal-feature img { height: 240px; border-radius: 4px; }
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
@media (max-width: 880px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .journal-grid { grid-template-columns: 1fr; } }

/* Journal card with serif title sitting AS overlay on the image,
   readable via a soft inset dark gradient at the bottom and a thin gold
   hairline rule above the title. Excerpt + meta sit below the image. */
.journal-card {
  display: block;
  position: relative;
}
.journal-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1.5rem;
  isolation: isolate;
}
.journal-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.journal-card:hover .journal-card__media img { transform: scale(1.06); }
/* Soft ink veil + bottom gradient for legibility */
.journal-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(36, 46, 53, 0) 25%, rgba(36, 46, 53, 0.55) 58%, rgba(36, 46, 53, 0.82) 82%, rgba(36, 46, 53, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
/* Title overlay sits in lower portion of the image with a gold hairline rule above */
.journal-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.75rem 2rem;
  color: var(--cream);
}
.journal-card__overlay::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 1rem;
  opacity: 0.85;
}
.journal-card__overlay h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.005em;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.15;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 18px rgba(0, 0, 0, 0.45);
}
.journal-card__overlay__category {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 0.85rem;
  display: inline-block;
  padding: 0.45rem 0.95rem;
  background: #242E35;
  border: 1px solid var(--gold);
}
/* Meta + excerpt sit below the image */
.journal-card__meta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.journal-card p {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1rem;
}
/* Read-more inline link */
.journal-card__more {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.journal-card:hover .journal-card__more { color: var(--gold); border-color: var(--gold); }

/* Cart */
.cart-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}
@media (max-width: 880px) { .cart-wrap { grid-template-columns: 1fr; } }
.cart-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.cart-item img { width: 100px; height: 100px; object-fit: cover; background: var(--cream-2); }
.cart-item__name { font-family: var(--font-display); letter-spacing: 0.1em; margin: 0 0 0.25rem; font-size: 1rem; }
.cart-item__variant { font-size: 0.85rem; color: var(--ink-mute); }
.cart-item__price { font-family: var(--font-serif); font-size: 1.15rem; color: var(--gold-text); }
.cart-item__remove { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); }
.cart-item__remove:hover { color: var(--crimson); }
.cart-summary {
  background: var(--cream-2);
  padding: 2rem;
  align-self: start;
  position: sticky;
  top: 100px;
}
.cart-summary h2 {
  font-family: var(--font-display);
  letter-spacing: 0.24em;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.cart-summary__row { display: flex; justify-content: space-between; padding: 0.5rem 0; }
.cart-summary__row--total {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-text);
}
.cart-summary .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }
.cart-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--ink-mute);
}
.gift-nudge {
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.gift-nudge__bar {
  flex: 1;
  height: 4px;
  background: rgba(249, 248, 244, 0.2);
  position: relative;
  overflow: hidden;
}
.gift-nudge__fill { height: 100%; background: var(--gold); transition: width 0.4s var(--ease); }

/* Checkout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
}
@media (max-width: 880px) { .checkout-grid { grid-template-columns: 1fr; gap: 2rem; } }
.checkout-grid > * { min-width: 0; }
.checkout-section { margin-bottom: 2.5rem; }
.checkout-section h2 {
  font-family: var(--font-display);
  letter-spacing: 0.24em;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 1.5rem;
}
.express-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
@media (max-width: 480px) { .express-row { grid-template-columns: 1fr; } }
.express-btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-width: 0;
}
.express-btn:hover { background: var(--gold); border-color: var(--gold); }
.divider-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 1.5rem 0;
}
.divider-or::before, .divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field-row.full { grid-template-columns: 1fr; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select { max-width: 100%; }
.field input, .field textarea, .field select {
  border: 1px solid var(--rule);
  background: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.field input:focus { outline: 2px solid var(--gold); outline-offset: -1px; border-color: var(--gold); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 2rem;
  margin-top: var(--space-l);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 0.35rem 0; }
.site-footer a { color: rgba(249, 248, 244, 0.7); transition: color 0.2s var(--ease); font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer__tagline {
  /* Body sans (not italic serif) so the line above the newsletter reads clearly
     on the dark footer; lifted opacity for contrast. */
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(249, 248, 244, 0.85);
  margin: 0 0 1.5rem;
  max-width: 34ch;
}
.site-footer__brand-mark {
  /* Reverse (cream/gold-on-transparent) logo sits directly on the dark footer,
     so no plaque is needed. */
  display: inline-block;
  margin-bottom: 1.5rem;
}
.site-footer__brand-mark img {
  display: block;
  height: 72px;
  width: auto;
}
.site-footer__bottom {
  border-top: 1px solid rgba(249, 248, 244, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(249, 248, 244, 0.62);
  letter-spacing: 0.12em;
}
/* Auth pages (login / signup) */
.auth {
  max-width: 27rem;
  margin: 0 auto;
}
.auth__card {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 2.75rem 2.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  text-align: left;
}
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream-2);
  border: 1px solid var(--rule);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.auth__submit { width: 100%; margin-top: 0.5rem; }
.auth__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.auth__meta a { color: var(--gold); border-bottom: 1px solid transparent; }
.auth__meta a:hover { border-color: var(--gold); }
.auth__alt {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.auth__alt a { color: var(--gold); border-bottom: 1px solid currentColor; }
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  text-align: left;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.checkbox-field input { margin-top: 0.2rem; }
.checkbox-field a { color: var(--gold); border-bottom: 1px solid currentColor; }
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .auth__card { padding: 2rem 1.5rem; }
}

/* Legal / FAQ prose pages */
.legal-prose {
  max-width: 62ch;
  margin: 0 auto;
  text-align: left;
}
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 2.75rem 0 0.85rem;
  color: var(--ink);
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p,
.legal-prose li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.legal-prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-prose li { margin-bottom: 0.5rem; }
.legal-prose a { color: var(--gold-text); border-bottom: 1px solid var(--gold-text); }
.legal-prose a:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.legal-updated {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* FAQ accordion */
.faq-list { max-width: 62ch; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 2.5rem 1.4rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item__body {
  padding: 0 0 1.4rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Best-sellers carousel (simple horizontal scroll) */
.carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 0 1.5rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.carousel > * { flex: 0 0 280px; scroll-snap-align: start; }
.carousel::-webkit-scrollbar { height: 4px; }
.carousel::-webkit-scrollbar-thumb { background: var(--gold); }
@media (min-width: 1080px) {
  .carousel { overflow-x: visible; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
  .carousel > * { flex: 1; }
}

/* Floating decorative motif */
.decor-vine {
  position: absolute;
  width: 80px;
  opacity: 0.35;
  pointer-events: none;
}

/* Section: split with image accent */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--cream-2);
}
.split__media { position: relative; min-height: 540px; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split__body { padding: var(--space-xl) clamp(2rem, 4vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 320px; }
  .split__body { padding: 3rem 1.5rem; }
}

/* Section: dark editorial (Lagar inactive/dark pattern) */
.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--dark .display { color: var(--cream); }
.section--dark .lead { color: rgba(249, 248, 244, 0.75); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .body-prose p { color: rgba(249, 248, 244, 0.75); }
.section--dark .btn { color: var(--cream); border-color: var(--cream); }
.section--dark .btn:hover { background: var(--cream); color: var(--ink); }

/* Mobile menu (lightweight) */
.menu-toggle {
  display: none;
  padding: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .menu-toggle { display: inline-block; }
  .header-utility { gap: 0.75rem; }
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1rem;
}
.mobile-nav[data-open="true"] { display: flex; }
/* Opaque panel + own scroll so nothing behind it shows through, even on long
   menus. Re-stated background defensively in case a token cascade is overridden. */
.mobile-nav {
  background: #F9F8F4;
  background: var(--cream);
  color: var(--ink);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
html.menu-open { overflow: hidden; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] { color: var(--gold-text); }
.mobile-nav__close { align-self: flex-end; font-size: 1.5rem; color: var(--ink); }

/* Shop submenu inside the mobile drawer: render inline and collapsible, not as
   the desktop absolute hover-flyout (which floated over the menu as a stray box). */
.mobile-nav .has-dropdown { display: block; position: static; width: 100%; }
.mobile-nav .has-dropdown > a { width: 100%; justify-content: space-between; }
.mobile-nav .site-dropdown {
  position: static;
  transform: none;
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  display: none;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0 0 0 1rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.mobile-nav .has-dropdown[data-open="true"] .site-dropdown {
  display: flex;
  visibility: visible;
  pointer-events: auto;
}
/* Tapping the trigger fires :focus-within, which re-applies the desktop
   translateX(-50%) flyout transform and shoots the panel off-screen left.
   Neutralise it inside the drawer at matching specificity. */
.mobile-nav .has-dropdown:hover .site-dropdown,
.mobile-nav .has-dropdown:focus-within .site-dropdown {
  transform: none;
}
.mobile-nav .has-dropdown[data-open="true"] .has-dropdown__caret { transform: rotate(180deg); }
.mobile-nav .site-dropdown__link {
  white-space: normal;
  font-size: 1rem !important;
  border-bottom: 1px solid var(--rule);
}

/* Ally (accessibility plugin) skip-to-content link: keep it off-screen until it
   receives keyboard focus, so it isn't a visible black box in the corner. */
.ea11y-skip-to-content-link,
a.skip-nav {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 100000;
}
.ea11y-skip-to-content-link:focus,
a.skip-nav:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  clip: auto;
}

/* Utility */
.center { text-align: center; }
.muted { color: var(--ink-mute); }
.gold { color: var(--gold-text); }
.spacer-l { height: var(--space-l); }

/* ============================================================
   Luxury decorative system
   - Reuses the brand's REAL artwork (flowerbg.svg + saffron-field-illustration.webp)
   - Quiet, low-opacity watermarks behind copy
   - Gold hairline rules and italic ornamental marks between sections
   - No invented hand-drawn shapes
   ============================================================ */

/* Ornamental mark, a single italic ampersand-like flourish (Garamond italic & is gorgeous) */
.ornament {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--gold);
  text-align: center;
  line-height: 1;
  margin: 0 auto 1.25rem;
  opacity: 0.85;
  user-select: none;
}
.ornament::before {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  margin: 0 auto;
  background-color: currentColor;
  -webkit-mask: var(--saffron-glyph) center / contain no-repeat;
          mask: var(--saffron-glyph) center / contain no-repeat;
}
.ornament--light { color: rgba(249, 248, 244, 0.85); }

/* Thin gold hairline section divider with optional ornament in middle */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 380px;
  margin: 2.5rem auto;
  color: var(--gold);
}
.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 30%, currentColor 70%, transparent);
  opacity: 0.55;
}
.rule__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.rule__mark::before {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: currentColor;
  -webkit-mask: var(--saffron-glyph) center / contain no-repeat;
          mask: var(--saffron-glyph) center / contain no-repeat;
}
.rule--dark { color: rgba(249, 248, 244, 0.7); }
.rule--dark .rule__mark { color: var(--gold); }

/* Large ornamental SVG watermark behind copy, uses the brand's real flowerbg.svg */
/* Full-width ornament band: tile the SVG horizontally so the linework runs
   continuously across the row, then mask the edges to a soft fade so it
   feels like an ornamental "band" rather than a wallpaper. */
.ornament-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.ornament-bg::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -10% -5% 0 -5%;
  background:
    var(--bg-flower, url('/brand/decorative/flowerbg.svg')) left center / auto 120% repeat-x,
    var(--bg-flower, url('/brand/decorative/flowerbg.svg')) 50% center / auto 120% repeat-x;
  background-position: 0 center, 600px center;
  opacity: 0.55;
  pointer-events: none;
  filter: saturate(0.85);
  /* Two masks compose to AND together — edges fade horizontally, bottom fades vertically. */
  -webkit-mask-image:
    linear-gradient(180deg, #000 0%, #000 65%, transparent 98%),
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image:
    linear-gradient(180deg, #000 0%, #000 65%, transparent 98%),
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
@media (max-width: 880px) {
  .ornament-bg::before {
    background-size: auto 90%;
    opacity: 0.4;
  }
}
.ornament-bg--right::before {
  left: auto;
  right: -10%;
  transform: translateY(-50%);
}
.ornament-bg--left::before {
  left: -10%;
  transform: translateY(-50%);
}

/* Illustration-rich dark section, uses the real saffron-field-illustration.webp */
.section--illustrated {
  position: relative;
  overflow: hidden;
}
.section--illustrated::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-illustration, url('/brand/decorative/saffron-field-illustration.webp')) center/cover no-repeat;
  opacity: 0.13;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}
.section--illustrated > * { position: relative; z-index: 1; }

/* Paper-grain texture, extremely subtle, lifts cream sections off flatness */
.section--paper {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(185, 141, 88, 0.05), transparent 50%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(122, 26, 26, 0.04), transparent 55%),
    var(--cream);
}

/* Pre-headline label: small italic serif with leading rule */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-text);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1.25rem;
}
.tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.tag--center { display: flex; justify-content: center; }
.tag--center::before { background: currentColor; }
.tag--light { color: rgba(249, 248, 244, 0.85); }
/* High-contrast verified badge: full-opacity gold on the dark section so "ISO 3632 Verified" stays legible */
.tag--verified {
  color: var(--gold);
  font-weight: 600;
  opacity: 1;
}
.tag--verified::before { opacity: 1; }

/* Saffron-flower brand mark, replaces the generic typographic ornament */
.saffron-mark {
  display: inline-flex;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.saffron-mark svg { width: 48px; height: 48px; }

/* Number marker, used to letter sections (I. II. III.) like a magazine */
.numeral {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold-text);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

/* Side ornament strip, a single thin gold vertical hairline with ornament in middle.
   Sits beside an editorial copy block to break the rectangle without adding heavy art. */
.aside-rule {
  position: relative;
  padding-left: 3rem;
}
.aside-rule::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.4;
}
.aside-rule::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.1rem;
  height: 1.1rem;
  background-color: var(--gold);
  -webkit-mask: var(--saffron-glyph) center / contain no-repeat;
          mask: var(--saffron-glyph) center / contain no-repeat;
  box-shadow: 0 0 0 0.35rem var(--cream);
}
@media (max-width: 880px) { .aside-rule { padding-left: 1.5rem; } .aside-rule::after { width: 0.95rem; height: 0.95rem; } }

/* Photo card with thin gold inner frame (luxury detail) */
.framed {
  position: relative;
  isolation: isolate;
}
.framed::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(185, 141, 88, 0.6);
  pointer-events: none;
  z-index: 2;
}
.framed img { position: relative; z-index: 1; }

/* Heritage badge, circular gold-rule badge with year inside, sits at corners of photos */
.badge {
  position: absolute;
  z-index: 3;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
.badge strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: var(--gold-text);
  display: block;
  margin: 0.15rem 0;
}
.badge--tl { top: 1.5rem; left: 1.5rem; }
.badge--br { bottom: 1.5rem; right: 1.5rem; }

/* Section-end ornament: italic ornamental glyph + thin gold rule below */
.section-end {
  text-align: center;
  padding: 3rem 0 0;
}
.section-end__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.section-end__mark::before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 auto;
  background-color: currentColor;
  -webkit-mask: var(--saffron-glyph) center / contain no-repeat;
          mask: var(--saffron-glyph) center / contain no-repeat;
}
.section-end__rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.45;
}

/* ============================================================
   Luxury rebuild v3 — numbers row, press strip, full-bleed band
   ============================================================ */

/* Numbers row — huge serif numerals as the brand */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.numbers .number {
  position: relative;
}
.numbers .number + .number::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--rule), transparent);
}
.number__figure {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 8.5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-variation-settings: 'opsz' 144;
}
.number__unit {
  font-size: 0.45em;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  margin-left: 0.15rem;
  font-weight: 400;
}
.number__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.number__sub {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 3.5rem 2rem; }
  .numbers .number + .number::before { display: none; }
  .numbers .number:nth-child(3)::before, .numbers .number:nth-child(4)::before { display: none; }
}
@media (max-width: 540px) {
  .numbers { grid-template-columns: 1fr; gap: 3rem; }
}

/* Press quote — one persuasive quote with a single masthead attribution */
.press-quote {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 5rem 0;
  text-align: center;
}
.press-quote__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 2rem;
  font-weight: 500;
}
.press-quote__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 42ch;
  margin: 0 auto 2rem;
  letter-spacing: -0.005em;
}
.press-quote__source {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.78rem;
}
.press-quote__masthead {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.press-quote__sep { color: var(--gold); }
.press-quote__byline {
  font-family: var(--font-serif);
  color: var(--ink-mute);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* Press strip — typographic logos, all caps, restrained */
.press-strip {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 3rem 0;
  text-align: center;
}
.press-strip__eyebrow {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-mute);
  margin: 0 0 1.5rem;
  letter-spacing: 0.04em;
}
.press-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.press-strip__logos span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  white-space: nowrap;
}
@media (max-width: 880px) {
  .press-strip__logos { gap: 1.75rem; }
  .press-strip__logos span { font-size: 0.85rem; letter-spacing: 0.1em; }
}

/* Full-bleed editorial band — image with overlaid italic caption inside
   a luxury translucent panel for legibility on any photo background. */
.full-band {
  position: relative;
  width: 100%;
  height: clamp(460px, 65vh, 760px);
  overflow: hidden;
  padding: 0;
}
.full-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Subtle whole-image veil for atmosphere (kept light so photo still reads) */
.full-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 46, 53, 0.10), rgba(36, 46, 53, 0.20));
  pointer-events: none;
}
.full-band__caption {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
}
/* The readable panel — translucent ink, backdrop-blur, thin gold inner-frame */
.full-band__panel {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5rem clamp(2.5rem, 6vw, 5rem);
  background: rgba(36, 46, 53, 0.42);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
          backdrop-filter: blur(14px) saturate(1.1);
  max-width: 56ch;
}
/* Gold inner hairline frame — 12px from the panel edge */
.full-band__panel::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(185, 141, 88, 0.55);
  pointer-events: none;
}
/* Saffron-crocus ornament above the quote */
.full-band__panel::after {
  content: '';
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--gold);
  -webkit-mask: var(--saffron-glyph) center / contain no-repeat;
          mask: var(--saffron-glyph) center / contain no-repeat;
  opacity: 0.85;
  margin: 0 auto 1.25rem;
  order: -2;
}
.full-band__panel p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  color: var(--cream);
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
/* Cite line beneath the quote (optional) */
.full-band__panel cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(249, 248, 244, 0.75);
}
/* Gold hairline rule between ornament and copy (drawn as a top border on p) */
.full-band__panel p::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .full-band__panel { padding: 2.5rem 1.75rem; }
  .full-band__panel::before { inset: 8px; }
}

/* Split-section variant where the media is a line-art illustration on cream
   (not a full-bleed photograph). Drops the framed gold border + lets the
   illustration breathe inside the section. */
.split__media--illustration {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3.5rem;
  min-height: 540px;
  position: relative;
}
/* Wrap the image with a paper-toned plate that the multiply blend lands on */
.split__media--illustration .sketch-plate {
  position: relative;
  display: inline-block;
  background: #F3EBD8; /* soft warm sketch-pad paper */
  border: 1px solid rgba(185, 141, 88, 0.7);
  line-height: 0;
}
.split__media--illustration img {
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 460px;
  display: block;
  mix-blend-mode: multiply;
}
.split__media--illustration .badge { background: var(--cream); z-index: 3; }
@media (max-width: 880px) {
  .split__media--illustration { min-height: 360px; padding: 3rem 2rem; }
  .split__media--illustration img { padding: 0.75rem; }
}

/* Light variant of the full-band — image is cream/illustration not a dark photo */
.full-band--light {
  background: var(--cream);
  height: clamp(520px, 70vh, 820px);
}
.full-band--light img {
  object-fit: contain;
  object-position: center;
  background: var(--cream);
}
.full-band--light::after {
  background: linear-gradient(180deg, rgba(249, 248, 244, 0) 60%, rgba(249, 248, 244, 0.45) 100%);
}
.full-band__panel--light {
  background: rgba(249, 248, 244, 0.78);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
          backdrop-filter: blur(8px) saturate(1.05);
}
.full-band__panel--light p { color: var(--ink); text-shadow: none; }
.full-band__panel--light cite { color: var(--ink-mute); }
.full-band__panel--light::before { border-color: rgba(185, 141, 88, 0.65); }
.full-band__panel--light p::before { background: var(--gold); opacity: 0.85; }

/* Three-tile category variant — outer tiles are taller for editorial rhythm */
.category-grid--three {
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 1.75rem;
}
.category-grid--three .category-tile { aspect-ratio: 4 / 5; }
.category-grid--three .category-tile--tall { margin-top: -3rem; aspect-ratio: 4 / 5.4; }
@media (max-width: 880px) {
  .category-grid--three { grid-template-columns: 1fr; }
  .category-grid--three .category-tile--tall { margin-top: 0; aspect-ratio: 4 / 5; }
}

/* Editorial collection-number tag, sits above the H3 inside the tile label */
.category-tile__cat {
  display: block !important;
  font-family: var(--font-serif) !important;
  font-style: normal !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 0.75rem !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* Override hero title for luxury minimal feel */
.hero__title em {
  display: block;
  margin-top: 0.5rem;
  color: var(--cream);
  opacity: 0.95;
}

/* ============================================================
   Batch provenance page (scan-to-trace)
   ============================================================ */
.batch-state {
  text-align: center;
  max-width: 36rem;
  margin: 4rem auto;
}
.batch-state .ornament { color: var(--gold); }

.batch-card {
  max-width: 60rem;
  margin: 0 auto;
}
.batch-card__head { margin-bottom: 3rem; }
.batch-card__no {
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold-text);
  margin-top: 1rem;
}
.batch-card__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.batch-card__fig { margin: 0; }
.batch-card__fig img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--cream-2);
  display: block;
}
.batch-card__fig figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-top: 0.6rem;
  text-align: center;
}

.batch-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 0 0 3.5rem;
}
.batch-facts > div {
  background: var(--cream);
  padding: 1.5rem 1.25rem;
}
.batch-facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
}
.batch-facts dd {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0;
}

.batch-section { margin-bottom: 3.5rem; }
.batch-section .display { margin-bottom: 1.25rem; }

.batch-lab__grid {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.batch-lab__grid li {
  border-top: 2px solid var(--gold);
  padding-top: 1rem;
}
.batch-lab__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-text);
}
.batch-lab__name {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 1rem;
  margin: 0.6rem 0 0.25rem;
}
.batch-lab__meta {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-mute);
}

.batch-certs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.batch-certs li {
  border: 1px solid var(--gold);
  color: var(--gold-text);
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .batch-card__media { grid-template-columns: 1fr; }
  .batch-facts { grid-template-columns: 1fr 1fr; }
  .batch-lab__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 460px) {
  .batch-facts { grid-template-columns: 1fr; }
}

/* QR demo card on the provenance page */
.qr-demo {
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 1.75rem;
  text-align: center;
  max-width: 360px;
}
.qr-demo img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 260px;
  margin: 0 auto;
}
.qr-demo figcaption {
  margin-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.qr-demo figcaption strong {
  color: var(--gold-text);
  letter-spacing: 0.14em;
}

/* Batch register grid */
.batch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 60rem;
  margin: 0 auto;
}
.batch-tile {
  display: block;
  text-decoration: none;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.batch-tile:hover,
.batch-tile:focus-visible {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  outline: none;
}
.batch-tile__qr {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto 1.25rem;
}
.batch-tile__no {
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-text);
  margin: 0 0 0.5rem;
}
.batch-tile__name {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
.batch-tile__meta {
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin: 0 0 1.25rem;
}
.batch-tile__go {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ──────────────────────────────────────────────────────────────────────────
   Native Elementor footer shim
   The footer was rebuilt from native Elementor widgets/containers (Image, Text,
   Heading, Icon List) so it is drag-and-drop editable. These rules adapt the
   Elementor widget chrome to the existing .site-footer design tokens and undo
   Elementor's full-bleed container defaults so the result is pixel-identical to
   the previous hardcoded footer.
   ────────────────────────────────────────────────────────────────────────── */

/* Constrain the footer grid + bottom bar to the site content width (matches the
   old footer, which sat inside .container). Elementor containers are full-bleed. */
.site-footer__grid,
.site-footer__bottom {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

/* Elementor forces display:flex on .e-con; restore the design grid. */
.site-footer .site-footer__grid.e-con {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 2.5rem;
  align-content: start;
}
@media (max-width: 1024px) {
  .site-footer .site-footer__grid.e-con { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer .site-footer__brand.e-con { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .site-footer .site-footer__grid.e-con { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Heading widget → footer column title. Override Elementor's heading rule
   (.elementor-widget-heading .elementor-heading-title) which sets the global
   accent colour + Roboto. */
.site-footer .elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

/* Icon List widget → plain link list. Strip the icon column + Elementor item
   chrome so it reads as the old <ul><li><a> footer list. */
.site-footer .elementor-icon-list-items { padding: 0; margin: 0; }
.site-footer .elementor-icon-list-item {
  display: block;
  padding: 0.35rem 0;
  margin: 0;
  border: none;
}
.site-footer .elementor-icon-list-item > a {
  display: inline;
  padding: 0;
}
.site-footer .elementor-icon-list-icon { display: none; }
.site-footer .elementor-icon-list-text {
  color: rgba(249, 248, 244, 0.7);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
  padding: 0;
}
.site-footer .elementor-icon-list-item:hover .elementor-icon-list-text { color: var(--gold); }

/* Tagline (Text widget): keep the 34ch measure even inside the flex brand col. */
.site-footer .site-footer__tagline { max-width: 34ch; }

/* Brand container: stack logo over tagline (flex-column already, keep margins). */
.site-footer .site-footer__brand.e-con { gap: 0; }

/* Bottom bar copyright text colour/size (Text widget). */
.site-footer .site-footer__bottom .elementor-widget-text-editor,
.site-footer .site-footer__bottom p,
.site-footer .site-footer__bottom span {
  font-size: 0.75rem;
  color: rgba(249, 248, 244, 0.62);
  letter-spacing: 0.12em;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   Product reviews (PDP)
   WooCommerce renders the native review list + form (comments_template) inside
   .pdp-reviews. These rules dress the default Woo review markup to the editorial
   design: cream cards, gold accents, Inter body. Reviews are verified-buyer only
   and held for moderation, so this section often shows just the gate notice.
   ────────────────────────────────────────────────────────────────────────── */
.pdp-reviews { padding: var(--space-l, 4rem) 0; background: var(--cream-2); }
.pdp-reviews .pdp-reviews__woo { margin-top: 2rem; }

/* Woo wraps everything in #reviews > #comments + #review_form_wrapper */
.pdp-reviews #reviews #comments { margin-bottom: 2.5rem; }
.pdp-reviews .woocommerce-Reviews-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

/* "No reviews yet" + verification-required notices */
.pdp-reviews .woocommerce-noreviews,
.pdp-reviews .woocommerce-verification-required,
.pdp-reviews p.woocommerce-info {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 0 0 1.5rem;
}

/* Review list */
.pdp-reviews ol.commentlist { list-style: none; margin: 0; padding: 0; }
.pdp-reviews ol.commentlist li.review {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 1.5rem 1.75rem;
  margin: 0 0 1rem;
}
.pdp-reviews .comment_container { display: flex; gap: 1rem; align-items: flex-start; }
.pdp-reviews .comment_container img.avatar {
  width: 44px; height: 44px; border-radius: 50%; margin: 0; flex: 0 0 auto;
}
.pdp-reviews .comment-text { flex: 1 1 auto; }
.pdp-reviews .comment-text p.meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}
.pdp-reviews .comment-text p.meta strong.woocommerce-review__author { color: var(--ink); font-weight: 600; }
.pdp-reviews .description p { font-family: var(--font-body); color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* Star ratings (display + input share .star-rating / .stars) */
.pdp-reviews .star-rating { color: var(--gold); margin-bottom: 0.5rem; }
.pdp-reviews .comment-form-rating .stars a { color: var(--gold); }

/* Review form */
.pdp-reviews #review_form_wrapper { margin-top: 2rem; }
.pdp-reviews #review_form .comment-reply-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  display: block;
  margin: 0 0 1rem;
}
.pdp-reviews #review_form .comment-form-rating label,
.pdp-reviews #review_form .comment-form-comment label,
.pdp-reviews #review_form .comment-form-author label,
.pdp-reviews #review_form .comment-form-email label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.4rem;
}
.pdp-reviews #review_form textarea,
.pdp-reviews #review_form input[type="text"],
.pdp-reviews #review_form input[type="email"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--rule);
  background: var(--cream);
  color: var(--ink);
  box-sizing: border-box;
}
.pdp-reviews #review_form textarea:focus,
.pdp-reviews #review_form input:focus { outline: 2px solid var(--gold); outline-offset: -1px; border-color: var(--gold); }
.pdp-reviews #review_form .comment-form-comment,
.pdp-reviews #review_form .comment-form-author,
.pdp-reviews #review_form .comment-form-email,
.pdp-reviews #review_form .comment-form-rating { margin-bottom: 1.25rem; }
.pdp-reviews #review_form .form-submit input[type="submit"] {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold-text);
  color: var(--cream);
  border: 1px solid var(--gold-text);
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.pdp-reviews #review_form .form-submit input[type="submit"]:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

/* ============================================================
   Native Elementor header (#117 rebuild, WIAB)
   The header is now built from native Elementor widgets so a
   non-developer can edit it in the visual editor:
     .ts-nav (nav-menu)  .ts-logo (theme-site-logo)
     .ts-cart (woocommerce-menu-cart)  .ts-mobile-nav (burger)
   This block styles those widgets to match the original design
   (the .site-nav / .brand-mark / .cart-icon rules above stay for
   the legacy shortcode header but are no longer rendered).
   ============================================================ */

/* Layout: logo centered between left + right clusters. Elementor wraps each
   widget in .elementor-element, so the grid targets those wrappers. */
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
/* The right cluster (nav + cart) sits in column 3, left-aligned next to logo. */
.site-header__inner .ts-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  justify-content: flex-start;
}

/* Desktop / mobile visibility toggles (design breakpoint 980px). */
.ts-mobile-only { display: none !important; }
@media (max-width: 980px) {
  .ts-desktop-only { display: none !important; }
  .ts-mobile-only { display: flex !important; align-items: center; }
}

/* Nav-menu widget links -> match the original .site-nav a styling. */
.ts-nav .elementor-nav-menu .elementor-item {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.5rem 0;
  fill: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.ts-nav ul.elementor-nav-menu { gap: 2.25rem; }
.ts-nav .elementor-nav-menu .elementor-item:hover,
.ts-nav .elementor-nav-menu .elementor-item.elementor-item-active,
.ts-nav .elementor-nav-menu .elementor-item[aria-current="page"] {
  color: var(--gold-text);
  background: transparent;
}
.ts-nav--left ul.elementor-nav-menu { justify-content: flex-end; }
.ts-nav--right ul.elementor-nav-menu { justify-content: flex-start; }
.ts-nav .elementor-item-anchor:focus,
.ts-nav .elementor-item:focus { background: transparent; }

/* Shop submenu (caret + dropdown panel) -> cream card matching .site-dropdown. */
.ts-nav .elementor-nav-menu .menu-item-has-children > a .sub-arrow,
.ts-nav .elementor-nav-menu .sub-arrow { opacity: 0.7; }
.ts-nav .elementor-nav-menu ul.sub-menu {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 0.5rem;
  min-width: 220px;
}
.ts-nav .elementor-nav-menu ul.sub-menu .elementor-sub-item {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
}
/* Override Elementor Pro's default dark-slate/white sub-item hover for ALL
   interactive states (hover, focus, highlighted, active) so an About child item
   left in :focus / .elementor-item-active after navigation keeps the approved
   cream-2 + gold treatment instead of flipping to the plugin default. */
.ts-nav .elementor-nav-menu ul.sub-menu .elementor-sub-item:hover,
.ts-nav .elementor-nav-menu ul.sub-menu .elementor-sub-item:focus,
.ts-nav .elementor-nav-menu ul.sub-menu .elementor-sub-item.highlighted,
.ts-nav .elementor-nav-menu ul.sub-menu .elementor-sub-item.elementor-item-active {
  background: var(--cream-2);
  color: var(--gold-text);
}
/* Reveal the Shop submenu on hover/focus (CSS-driven, JS-independent). */
.ts-nav .elementor-nav-menu .menu-item-has-children { position: relative; }
.ts-nav .elementor-nav-menu .menu-item-has-children > ul.sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  z-index: 50;
}
.ts-nav--right .elementor-nav-menu .menu-item-has-children > ul.sub-menu { left: auto; right: 0; }
.ts-nav .elementor-nav-menu .menu-item-has-children:hover > ul.sub-menu,
.ts-nav .elementor-nav-menu .menu-item-has-children:focus-within > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Site Logo widget -> match the original 78px brand-mark, centered. */
.ts-logo { text-align: center; }
.ts-logo img { height: 78px; width: auto; margin: 0 auto; display: block; }

/* WooCommerce menu-cart toggle -> quiet ink icon matching .cart-icon. */
.ts-cart .elementor-menu-cart__toggle .elementor-button {
  background: transparent;
  border: 0;
  padding: 0.5rem 0;
  color: var(--ink-soft);
  fill: var(--ink-soft);
}
.ts-cart .elementor-menu-cart__toggle .elementor-button:hover { color: var(--gold); fill: var(--gold); }
.ts-cart .elementor-button-icon svg,
.ts-cart .elementor-button-icon i { width: 20px; height: 20px; font-size: 20px; }
.ts-cart .elementor-menu-cart__toggle .elementor-button-text { display: none; }
/* Count bubble -> gold pill matching .cart-icon__count. */
.ts-cart .elementor-button .elementor-menu-cart__toggle-button-text { display: none; }
.ts-cart .elementor-menu-cart__subtotal { display: none; }
.ts-cart .elementor-button .e-cart-items {
  background: var(--gold);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

/* Mobile hamburger nav-menu -> ink burger; drawer styled as cream card. */
.ts-mobile-nav .elementor-menu-toggle { color: var(--ink); padding: 0.4rem; background: transparent; border: 0; }
.ts-mobile-nav .elementor-menu-toggle:hover,
.ts-mobile-nav .elementor-menu-toggle:focus { background: transparent; }
.ts-mobile-nav .elementor-menu-toggle svg { width: 26px; height: 26px; fill: var(--ink); }
.ts-mobile-nav .elementor-nav-menu--dropdown {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  top: var(--ts-header-h, 72px);
  max-height: calc(100vh - var(--ts-header-h, 72px));
  overflow-y: auto;
  box-shadow: var(--shadow-soft);
  z-index: 60;
}
.ts-mobile-nav .elementor-nav-menu--dropdown ul.elementor-nav-menu { width: 100%; }
/* Anchor the full-width drawer to the header, not the narrow burger column. */
.site-header { position: relative; }
.ts-mobile-nav .elementor-nav-menu--dropdown .elementor-item { padding-left: 1.5rem; padding-right: 1.5rem; }
.ts-mobile-nav .elementor-nav-menu--dropdown .elementor-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 1rem 1.25rem;
}
.ts-mobile-nav .elementor-nav-menu--dropdown .elementor-item:hover,
.ts-mobile-nav .elementor-nav-menu--dropdown .elementor-item.elementor-item-active {
  color: var(--gold-text);
  background: var(--cream-2);
}

/* Mobile header row: [hamburger] [logo] [cart] on one short line. */
@media (max-width: 980px) {
  .site-header { --ts-header-h: 70px; }
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .ts-mobile-nav { grid-column: 1; grid-row: 1; justify-self: start; }
  .ts-logo { grid-column: 2; grid-row: 1; }
  .ts-logo img { height: 50px; }
  .site-header__inner .ts-right {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: auto;
    min-width: 0;
    padding: 0;
    gap: 0;
    justify-content: flex-end;
  }
  /* Cart hugs the right edge, mirroring the burger on the left. */
  .ts-cart { margin-right: 0; }
  .ts-cart .elementor-menu-cart__toggle .elementor-button { padding-right: 0; }
}

/* #107 desktop nav nowrap */
@media (min-width: 981px) {
  /* Keep the right cluster (nav + cart) on a single line; the cart must
     sit on the same row as the nav, vertically centered against ONE row. */
  .site-header__inner .ts-right { flex-wrap: nowrap; }
  /* The horizontal nav menus must never wrap their items to a 2nd row. */
  .ts-nav .elementor-nav-menu--layout-horizontal ul.elementor-nav-menu,
  .ts-nav.elementor-nav-menu--dropdown-none ul.elementor-nav-menu,
  .ts-nav ul.elementor-nav-menu { flex-wrap: nowrap; }
  /* Slightly tighter gap on the right cluster so all four links fit the
     1fr column comfortably without forcing the logo off-center. */
  .ts-nav--right ul.elementor-nav-menu { gap: 1.75rem; }
  .ts-nav .elementor-nav-menu .elementor-item { white-space: nowrap; }
}

/* #107 nav hover no-reflow */
@media (min-width: 981px) {
  .ts-nav .elementor-nav-menu .elementor-item,
  .ts-nav .elementor-nav-menu .elementor-item:hover,
  .ts-nav .elementor-nav-menu .elementor-item:focus,
  .ts-nav .elementor-nav-menu .elementor-item:active,
  .ts-nav .elementor-nav-menu .elementor-item.highlighted,
  .ts-nav .elementor-nav-menu .elementor-item.elementor-item-active {
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    border: 0 !important;
    line-height: 20px !important;
  }
}

/* #107 mobile toggle force-collapse <=980 */
@media (max-width: 980px) {
  .ts-mobile-only .elementor-menu-toggle {
    display: flex !important;
  }
  .ts-mobile-only > .elementor-nav-menu--main {
    display: none !important;
  }
  .ts-mobile-only .elementor-menu-toggle.elementor-active + nav.elementor-nav-menu--dropdown,
  .ts-mobile-only nav.elementor-nav-menu--dropdown[aria-hidden="false"] {
    display: block !important;
  }
}
