/* Spōr — brand system: DM Sans UI, Cormorant editorial, Cal Sans logo wordmark */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;1,9..40,300&family=Cal+Sans:wght@400&display=swap");

:root {
  /* Brand palette (packaging / identity guide) */
  --brand-cream: #f3efe8;
  --brand-mushroom: #b8a68d;
  --brand-earth: #6a4e3b;
  --brand-charcoal: #1a1a1a;
  --brand-black: #000000;
  /* Packaging foil / bronze hairlines (inspired by print collateral) */
  --brand-foil: #c4a574;
  --brand-foil-soft: rgba(196, 165, 116, 0.32);

  --bg: var(--brand-black);
  --bg-elevated: var(--brand-black);
  --surface: rgba(0, 0, 0, 0.94);
  --surface-solid: var(--brand-black);
  --ink: var(--brand-cream);
  --ink-muted: #b5aea4;
  --border: rgba(184, 166, 141, 0.22);
  --border-strong: rgba(184, 166, 141, 0.38);
  --accent: var(--brand-cream);
  --accent-hover: #faf8f4;
  --accent-muted: rgba(243, 239, 232, 0.08);
  --gold: var(--brand-mushroom);
  --chanterelle: #a89478;
  --parsley: var(--brand-mushroom);
  --sale: #c97a6a;
  --announce: var(--brand-black);
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: var(--font-serif);
  --font-logo: "Calps", "Cal Sans", system-ui, sans-serif;
  /* Surfaces & overlays */
  --overlay-body: linear-gradient(180deg, #000000 0%, #000000 50%, #000000 100%);
  --overlay-hero: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.78) 30%,
    rgba(0, 0, 0, 0.34) 58%,
    rgba(0, 0, 0, 0.07) 82%,
    rgba(0, 0, 0, 0) 100%
  );
  --hero-bg-solid: var(--brand-black);
  --overlay-hero-card: rgba(0, 0, 0, 0.82);
  --overlay-home-section: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, #000000 100%);
  --overlay-tile: linear-gradient(
    185deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.52) 48%,
    rgba(0, 0, 0, 0.94) 100%
  );
  --card-catalog-bg: rgba(0, 0, 0, 0.92);
  --card-catalog-border: color-mix(in srgb, var(--brand-foil) 28%, rgba(243, 239, 232, 0.1));
  --overlay-page-accent: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, #000000 100%);
  --mega-bg: var(--brand-black);
  --mega-panel-bg: rgba(0, 0, 0, 0.98);
  --header-sticky-bg: var(--brand-black);
  --product-media-bg: linear-gradient(145deg, #000000 0%, #000000 100%);
  --badge-bg: rgba(0, 0, 0, 0.92);
  --badge-oos-bg: #000000;
  --badge-oos-color: var(--brand-cream);
  --badge-oos-border: rgba(184, 166, 141, 0.25);
  --quick-shop-media-bg: linear-gradient(160deg, #000000 0%, #000000 100%);
  --quick-shop-modal-solid: rgba(0, 0, 0, 0.99);
  --quick-shop-modal-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.99), #000000);
  --input-bg: rgba(0, 0, 0, 0.6);
  --prose-panel-bg: rgba(0, 0, 0, 0.94);
  --footer-bg: var(--brand-cream);
  --footer-muted: rgba(26, 26, 26, 0.76);
  --footer-heading: var(--brand-earth);
  --footer-link: rgba(26, 26, 26, 0.82);
  --footer-link-hover: var(--brand-mushroom);
  --footer-tagline: rgba(26, 26, 26, 0.45);
  --footer-border: color-mix(in srgb, var(--brand-foil) 22%, rgba(184, 166, 141, 0.45));
  --dropdown-hover-bg: rgba(243, 239, 232, 0.06);
  --announce-text: var(--brand-cream);
  --view-toggle-active-fg: var(--brand-charcoal);
  --footer-newsletter-bg: var(--brand-cream);
  --footer-newsletter-eyebrow: var(--brand-earth);
  --header-content-max: calc(1400px * 1.05);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  background-color: var(--bg);
  background-image: var(--overlay-body);
  background-size: auto;
  background-position: 0 0;
  background-repeat: no-repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

b,
strong {
  font-weight: 400;
}

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

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: 1.5rem 0 0;
}

.cta-row .btn {
  width: auto;
}

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

/* Announcement */
.announce {
  background: var(--announce);
  color: var(--announce-text);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.announce a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announce a:hover {
  color: var(--gold);
}

.header-sticky {
  position: sticky;
  top: 0;
  z-index: 120;
  background: #000;
  border-bottom: 1px solid rgba(243, 239, 232, 0.08);
  padding-bottom: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

/* Header */
.site-header {
  background: #000;
  color: var(--brand-cream);
  border-bottom: none;
}

.site-header a,
.site-header button {
  color: var(--brand-cream);
}

.site-header .logo {
  color: var(--brand-cream);
}

/* Single-row Regalis-style bar */
.site-header--regalis .header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.95rem 1.5rem;
  min-height: 60px;
}

.site-header--regalis .header-bar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: start;
}

.site-header--regalis .header-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--brand-cream);
  text-decoration: none;
}

.site-header--regalis .header-brand__svg {
  display: block;
  height: clamp(42px, 4.8vw, 58px);
  width: auto;
}

@media (max-width: 720px) {
  .site-header--regalis .header-brand__svg {
    height: 40px;
  }
}

.site-header--regalis .nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0.5rem 0.55rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 4px;
}

.site-header--regalis .nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--brand-cream);
  border-radius: 1px;
}

@media (max-width: 900px) {
  .site-header--regalis .nav-burger {
    display: inline-flex;
  }
}

/* Center nav cluster */
.site-header--regalis .header-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0.1rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-header--regalis .header-nav__item {
  position: relative;
}

.site-header--regalis .header-nav__trigger,
.site-header--regalis .header-nav__link {
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brand-cream);
  background: none;
  border: none;
  padding: 1.05rem 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header--regalis .header-nav__trigger:hover,
.site-header--regalis .header-nav__link:hover,
.site-header--regalis .header-nav__item:hover .header-nav__trigger,
.site-header--regalis .header-nav__item:focus-within .header-nav__trigger,
.site-header--regalis .header-nav__item.is-open .header-nav__trigger {
  color: var(--brand-foil);
}

.site-header--regalis .header-nav__trigger::after {
  content: "";
  display: inline-block;
  margin-left: 0.45rem;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.site-header--regalis .header-nav__item:hover .header-nav__trigger::after,
.site-header--regalis .header-nav__item:focus-within .header-nav__trigger::after,
.site-header--regalis .header-nav__item.is-open .header-nav__trigger::after {
  transform: translateY(0) rotate(225deg);
}

/* Dropdown panel (mega-menu) — opens via click-toggle managed in site.js */
.site-header--regalis .header-nav__panel {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 620px;
  max-width: calc(100vw - 2rem);
  background: var(--brand-cream);
  border: 1px solid color-mix(in srgb, var(--brand-charcoal) 8%, transparent);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  padding: 1.5rem 1.75rem 1.75rem;
  z-index: 80;
  border-radius: 2px;
}

.site-header--regalis .header-nav__panel--narrow {
  min-width: 280px;
}

.site-header--regalis .header-nav__item:hover .header-nav__panel,
.site-header--regalis .header-nav__item:focus-within .header-nav__panel,
.site-header--regalis .header-nav__item.is-open .header-nav__panel {
  display: block;
}

.site-header--regalis .header-nav__links--single {
  display: block;
}

.site-header--regalis .header-nav__panel-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 2.25rem;
  align-items: stretch;
}

.site-header--regalis .header-nav__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.site-header--regalis .header-nav__col h4 {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  font-weight: 500;
}

.site-header--regalis .header-nav__col a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brand-charcoal);
  padding: 0.35rem 0;
  text-decoration: none;
}

.site-header--regalis .header-nav__col a:hover {
  color: var(--brand-earth);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header--regalis .header-nav__feature {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--brand-charcoal);
  gap: 0.6rem;
}

.site-header--regalis .header-nav__feature-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background-color: #0a0907;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  filter: brightness(0.92);
  transition: filter 0.2s ease;
}

.site-header--regalis .header-nav__feature:hover .header-nav__feature-img {
  filter: brightness(1.05);
}

.site-header--regalis .header-nav__feature-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-header--regalis .header-nav__feature-arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.site-header--regalis .header-nav__feature:hover .header-nav__feature-arrow {
  transform: translateX(3px);
}

@media (max-width: 720px) {
  .site-header--regalis .header-nav__panel {
    min-width: 320px;
  }
  .site-header--regalis .header-nav__panel-grid {
    grid-template-columns: 1fr;
  }
  .site-header--regalis .header-nav__links {
    grid-template-columns: 1fr;
  }
}

/* Right-side tools */
.site-header--regalis .header-bar__right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-self: end;
}

.site-header--regalis .header-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--brand-cream);
  background: transparent;
  border: none;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header--regalis .header-tool:hover,
.site-header--regalis .header-tool-group:hover .header-tool--trigger,
.site-header--regalis .header-tool-group:focus-within .header-tool--trigger {
  background: rgba(243, 239, 232, 0.08);
  color: var(--brand-foil);
}

/* Account hover dropdown — themed to match Shop / Resources menus */
.site-header--regalis .header-tool-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-header--regalis .header-tool-panel {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: max-content;
  min-width: 160px;
  background: var(--brand-cream);
  color: var(--brand-charcoal);
  border: 1px solid color-mix(in srgb, var(--brand-charcoal) 8%, transparent);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  padding: 0.85rem 1.05rem 0.95rem;
  border-radius: 2px;
  z-index: 80;
}

.site-header--regalis .header-tool-group:hover .header-tool-panel,
.site-header--regalis .header-tool-group:focus-within .header-tool-panel {
  display: block;
}

.site-header--regalis .header-tool-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.site-header--regalis .header-tool-panel__inner a,
.site-header--regalis .header-tool-panel__inner .header-signin,
.site-header--regalis .header-tool-panel__inner .header-account-link {
  display: block;
  color: var(--brand-charcoal);
  text-decoration: none;
  padding: 0.25rem 0;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.site-header--regalis .header-tool-panel__inner a:hover,
.site-header--regalis .header-tool-panel__inner a:focus-visible {
  color: var(--brand-foil);
  outline: none;
}

/* Override the flat row layout the existing data-header-auth host used */
.site-header--regalis .header-tool-panel__inner.header-bar__auth {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

/* Signed-in email label inside the account dropdown */
.site-header--regalis .header-tool-panel__email {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--brand-charcoal) 55%, transparent);
  padding: 0 0 0.5rem;
  margin: 0 0 0.4rem;
  border-bottom: 1px solid color-mix(in srgb, var(--brand-charcoal) 10%, transparent);
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Sign-out gets a faint separator and muted color to read as a tertiary action */
.site-header--regalis .header-tool-panel__inner .header-account-link--signout {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid color-mix(in srgb, var(--brand-charcoal) 10%, transparent);
  color: color-mix(in srgb, var(--brand-charcoal) 70%, transparent);
}

.site-header--regalis .header-cart__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--brand-cream);
  color: #000;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
  text-align: center;
  box-sizing: border-box;
}

/* Hide the legacy nav cluster + mega panels (replaced by header-nav above) */
.site-header--regalis .mega,
.site-header--regalis .header-top {
  display: none;
}

/* Responsive: collapse center nav into burger on small screens */
@media (max-width: 900px) {
  .site-header--regalis .header-bar {
    grid-template-columns: auto 1fr auto;
    padding: 0.7rem 1rem;
  }
  .site-header--regalis .header-nav {
    display: none;
  }
  .site-header--regalis .header-bar__left {
    gap: 0.25rem;
  }
  .site-header--regalis .header-bar__left .logo {
    font-size: 1.35rem;
  }
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-links {
  display: flex;
  gap: 1.25rem;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-links a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-links a.header-cart:hover {
  text-decoration: none;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.logo span {
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 0.55em;
  display: block;
  text-align: center;
  margin-top: -0.2em;
}

.nav-bar {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
  padding: 0.85rem 0.65rem;
}

.nav-item:hover {
  color: var(--gold);
}

.nav-item.has-children::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  vertical-align: middle;
  border: 4px solid transparent;
  border-top-color: currentColor;
}

.dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
  z-index: 50;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink);
}

.dropdown a:hover {
  background: var(--dropdown-hover-bg);
  color: var(--gold);
}

/* Main: use .page-main on <main> for layout width */
.breadcrumb {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.breadcrumb a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 0 2rem;
}

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

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 13px;
  color: var(--ink-muted);
}

.view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.view-toggle button {
  border: none;
  background: var(--surface-solid);
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink-muted);
}

.view-toggle button.active {
  background: var(--accent);
  color: var(--view-toggle-active-fg);
}

.toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

select,
.btn {
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

select {
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background-color: var(--surface-solid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b8a68d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 12px 12px;
  appearance: none;
  cursor: pointer;
  color: var(--ink);
}

.btn {
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface-solid);
  cursor: pointer;
  font-weight: 400;
}

.btn:hover {
  border-color: var(--ink);
}

.btn-primary {
  background: var(--accent);
  color: var(--view-toggle-active-fg);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--view-toggle-active-fg);
}

/* Layout with optional filters */
.layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  /* default stretch: sidebar column matches grid row height so sticky filters have room to pin */
  align-items: stretch;
}

@media (min-width: 901px) {
  .filters-panel {
    position: sticky;
    top: 9rem;
    z-index: 10;
  }

  .filters-panel .filters-card {
    max-height: min(70vh, calc(100vh - 11rem));
    overflow-y: auto;
  }
}

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

  .filters-panel {
    display: none;
  }

  .filters-panel.open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 200;
    padding: 1rem;
  }

  .filters-panel.open .filters-card {
    max-height: 90vh;
    overflow-y: auto;
  }
}

.filters-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  padding: 1.25rem;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.filters-card h3 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.filter-group {
  margin-bottom: 1.25rem;
}

.filter-group h4 {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--ink-muted);
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  margin-bottom: 0.35rem;
  cursor: pointer;
}

.filter-group input {
  accent-color: var(--accent);
}

.price-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.price-row input {
  width: 100%;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  font: inherit;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

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

.product-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 600px) {
  .product-grid.list-view .product-card {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--card-catalog-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-catalog-border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #000000;
  border-bottom: 1px solid rgba(243, 239, 232, 0.08);
}

.product-media__link .product-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease;
}

.product-media__link .product-media__img--primary {
  opacity: 1;
}

.product-media__link .product-media__img--hover {
  opacity: 0;
}

/* Catalog product photos: ~15% lower exposure (brightness 85%) */
.product-media__link .product-media__img,
.quick-shop__media img,
.product-page__media img,
.product-page__gallery-img,
.cart-line img,
.prose-lead-media__img {
  filter: brightness(0.85);
}

.product-card:has(.product-media__img--hover):hover .product-media__link .product-media__img--primary {
  opacity: 0;
}

.product-card:has(.product-media__img--hover):hover .product-media__link .product-media__img--hover {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .product-media__link .product-media__img {
    transition: none;
  }
}

.badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  background: var(--badge-bg);
  border: 1px solid var(--border-strong);
  color: var(--ink);
}

.badge.sale {
  color: var(--sale);
  border-color: var(--sale);
}

.badge.oos {
  background: var(--badge-oos-bg);
  color: var(--badge-oos-color);
  border-color: var(--badge-oos-border);
}

.product-body {
  padding: 1rem 1rem 1.25rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.product-title a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-meta {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.price-row-product {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 15px;
  font-weight: 400;
}

.price.from::before {
  content: "From ";
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-muted);
}

.compare-at {
  text-decoration: line-through;
  color: var(--ink-muted);
  font-size: 14px;
}

.quick-shop {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.quick-shop:hover {
  color: var(--gold);
  text-decoration: underline;
}

.product-card.oos .quick-shop {
  display: none;
}

/* SEO block */
.seo-block {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 720px;
}

.seo-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 0 0.75rem;
}

.seo-block p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
}

/* Footer (cream band — matches .band--cream / manifesto) */
.site-footer {
  color-scheme: light;
  background: var(--footer-bg);
  color: var(--footer-muted);
  margin-top: 3rem;
  padding: 3rem 1.25rem;
  font-size: 13px;
  border-top: 1px solid var(--footer-border);
}

.site-footer a {
  color: var(--footer-link);
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 2rem 2.75rem;
  justify-content: center;
  text-align: left;
}

@media (max-width: 720px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 28rem);
    column-gap: 2rem;
  }
}

@media (max-width: 400px) {
  .footer-columns {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 16rem;
  }
}

.site-footer h4 {
  color: var(--footer-heading);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

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

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a:hover {
  color: var(--footer-link-hover);
}

.footer-tagline {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--footer-border);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--footer-tagline);
}

.footer-version {
  width: 100%;
  text-align: center;
  margin: 0.5rem 0 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--footer-tagline);
}

.drawer-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .drawer-header {
    display: flex;
  }
}

.drawer-header button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  color: var(--ink-muted);
}

/* --- v2: chrome, layout mounts, modals --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.overflow-lock {
  overflow: hidden;
}

.page-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.page-main--narrow {
  max-width: 760px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  margin: 2rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  color: var(--gold);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  margin: 0 0 0.35rem;
}

.subscription-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  list-style: none;
  padding: 0;
}

.subscription-plan {
  margin: 0;
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.prose-lead-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0.75rem 0 1.25rem;
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  background: var(--product-media-bg);
}

.prose-lead-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subscription-plan__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.subscription-plan__price {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.65rem;
}

.subscription-plan__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.lede {
  color: var(--ink-muted);
  max-width: 52ch;
  margin: -1rem 0 2rem;
}

/* Header v2 */
.site-header--simple .header-inner--simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner__tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.header-top {
  position: relative;
  max-width: var(--header-content-max);
  margin: 0 auto;
  padding: 0.5rem 1rem 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.5rem;
}

.header-top__start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.header-top__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex: none;
  width: max-content;
  max-width: min(15rem, calc(100% - 7rem));
  min-width: 0;
  text-align: center;
  z-index: 0;
  pointer-events: auto;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.header-brand .logo {
  margin: 0;
}

.header-brand__tag {
  font-family: var(--font-body);
  font-size: 0.546875rem; /* 8.75px — 125% of 7px (mobile) */
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand-mushroom);
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 1025px) {
  .header-brand__tag {
    font-size: 0.525rem; /* 8.4px — 120% of 7px (desktop) */
  }
}

.header-top__right {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Sign in lives in the hamburger drawer on all viewports */
.header-signin {
  display: none;
}

.header-top__right a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-top__right a.header-cart:hover {
  text-decoration: none;
}

.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: inherit;
}

.header-cart__icon {
  display: flex;
  line-height: 0;
}

.header-cart__icon svg {
  display: block;
}

.header-cart__badge {
  position: absolute;
  top: 5px;
  right: 1px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface-solid);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  box-sizing: border-box;
}

.logo--wordmark {
  font-family: var(--font-logo);
  /* Mobile: +25% vs previous sizes */
  font-size: clamp(1.3125rem, 2.75vw, 2rem);
  font-weight: 300;
  font-synthesis: none;
  text-transform: none;
  letter-spacing: 0.08em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1025px) {
  .logo--wordmark {
    /* Desktop: +20% vs previous sizes */
    font-size: clamp(1.26rem, 2.64vw, 1.92rem);
  }
}

.nav-burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: none;
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  min-width: 44px;
  min-height: 44px;
  margin-left: -0.45rem;
  padding: 0;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 1.125rem;
  height: 1.5px;
  background: var(--ink);
  border-radius: 0;
}

/* Fallback simple header (file://): match primary layout */
.site-header--simple .header-inner--simple {
  position: relative;
  justify-content: space-between;
}

.site-header--simple .header-inner--simple > .logo--wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: max-content;
  max-width: min(15rem, calc(100% - 6rem));
  text-align: center;
}

.site-header--simple .nav-burger,
.site-header--simple .header-inner__tools {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero__top {
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero__inner,
  .hero--home .hero__inner {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: min(38rem, 100%);
  }

  .hero .brand-rule {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mega nav (retained in markup; primary nav is the hamburger drawer) */
.mega {
  display: none;
  border-top: 1px solid color-mix(in srgb, var(--brand-foil) 25%, var(--border));
  background: var(--mega-bg);
}

.mega__inner {
  max-width: var(--header-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.25rem 0.5rem;
  padding: 0 1rem;
}

.mega__cluster {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.mega__item {
  position: relative;
}

.mega__trigger,
.mega__link {
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem 0.65rem;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.mega__link {
  display: inline-flex;
  align-items: center;
}

.mega__trigger:hover,
.mega__link:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mega__panel {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 520px;
  max-width: calc(100vw - 2rem);
  background: var(--mega-panel-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  padding: 1rem 1.25rem 1.25rem;
  z-index: 80;
}

.mega__item:hover .mega__panel,
.mega__item:focus-within .mega__panel {
  display: block;
}

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

.mega__cols h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mushroom);
}

.mega__cols a {
  display: block;
  font-size: 14px;
  padding: 0.25rem 0;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

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

@media (max-width: 640px) {
  .mega__cols--two {
    grid-template-columns: 1fr;
  }
}

.mega__cols a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Home: dark mood mushroom photography */
body[data-page="home"] .page-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 1.5rem;
}

body[data-page="home"] .page-main > .section,
body[data-page="home"] .page-main > .tiles {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

body[data-page="home"] .page-main > .tiles {
  margin-bottom: 1.5rem;
}

.hero {
  border: none;
  margin-bottom: 0;
}

.hero--home {
  --hero-black-tail: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Tall enough that the cream “Our philosophy” band stays below the first paint */
  min-height: min(92.5vh, 900px);
  /* Solid black strip under the feature row (photo layers stop above this so wood can’t show through) */
  padding-bottom: var(--hero-black-tail);
  margin-bottom: 0;
  background-color: var(--hero-bg-solid);
  overflow: hidden;
}

/* Opaque strip over scrim/photo stack: kills soft alpha at the cut + sits above z-1 scrim */
.hero--home::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--hero-black-tail) + 28px);
  background: var(--hero-bg-solid);
  z-index: 1;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Stop mushroom photography short of the bottom so only --hero-bg-solid shows above the cream band */
.hero--home .hero__bg {
  bottom: var(--hero-black-tail);
  /* Crossfade blur() expands past layer bounds; clip so it can’t bleed into the black tail */
  overflow: hidden;
}

/* Mobile: portrait hero PNGs, full-bleed cover (original behavior). Desktop: landscape PNGs, cover, bias left for text. */
.hero__bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 65% center;
  background-repeat: no-repeat;
}

.hero--home .hero__bg-layer {
  background-position: 65% 54%;
}

@media (min-width: 960px) {
  .hero__bg-layer {
    background-position: 38% center;
  }

  .hero--home .hero__bg-layer {
    background-position: 38% 54%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-layer {
    transition: none !important;
  }
}

.hero__bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: var(--overlay-hero);
  background-size: cover;
  background-position: 65% center;
}

.hero--home .hero__bg-scrim {
  background-position: 65% 54%;
  bottom: var(--hero-black-tail);
}

@media (min-width: 960px) {
  .hero__bg-scrim {
    background-position: 38% center;
  }

  .hero--home .hero__bg-scrim {
    background-position: 38% 54%;
  }
}

.hero__top {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: min(36rem, 92vw);
  margin-left: max(1.25rem, calc((100vw - min(100vw, 1400px)) / 2 + 1.25rem));
  margin-right: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--overlay-hero-card);
  border: 1px solid color-mix(in srgb, var(--brand-foil) 38%, var(--border-strong));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.hero--home .hero__top {
  padding-top: clamp(2.15rem, 5.35vw, 4.2rem);
}

.hero--home .hero__inner {
  max-width: min(38rem, 94vw);
  transform: translateY(2px);
}

@media (min-width: 1025px) {
  .hero--home .hero__top {
    align-items: center;
    padding-top: clamp(1.4rem, 3.65vw, 2.65rem);
    padding-bottom: clamp(1.85rem, 3.5vw, 2.95rem);
  }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: var(--brand-mushroom);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 300;
  margin: 0 0 0.55rem;
  line-height: 1.14;
  letter-spacing: 0.01em;
  color: var(--ink);
}

/* Leaf + hairline rule (print-style divider, brand inspiration) */
.brand-rule {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  max-width: 15rem;
  margin: 0 0 1rem;
  color: var(--brand-foil);
}

.brand-rule--center {
  margin-left: auto;
  margin-right: auto;
}

.hero .brand-rule {
  max-width: 13.5rem;
  margin-left: 0;
  margin-right: 0;
}

.brand-rule__line {
  flex: 1;
  min-width: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-foil-soft), var(--brand-foil), var(--brand-foil-soft), transparent);
  opacity: 0.95;
}

.brand-rule__mark {
  flex-shrink: 0;
  width: 1.28rem;
  height: 1.28rem;
  display: block;
}

.hero__copy {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.65;
  max-width: 44ch;
}

/* Regalis-style landing hero: minimal, big serif title, foil rule, no feature row */
.hero--landing {
  --hero-black-tail: 0px;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 0;
}

.hero--landing::after {
  display: none;
}

.hero__bg-scrim--landing {
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero__landing-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1.5rem, 5vw, 3.5rem) clamp(5rem, 13vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  flex: 1;
  justify-content: center;
}

.hero__landing-inner .hero__eyebrow {
  margin: 0;
  color: var(--brand-foil);
  font-size: 11px;
  letter-spacing: 0.32em;
}

.hero__landing-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--brand-cream);
  margin: 0.65rem 0 0.95rem;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.hero__landing-rule {
  display: block;
  width: 96px;
  height: 1px;
  margin: 0 0 1.35rem;
  background: linear-gradient(
    90deg,
    var(--brand-foil) 0%,
    color-mix(in srgb, var(--brand-foil) 60%, transparent) 100%
  );
}

.hero__landing-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  color: rgba(243, 239, 232, 0.86);
  max-width: 42ch;
  margin: 0 0 1.6rem;
}

.hero--landing .hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .hero--landing {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero__landing-inner {
    align-items: flex-start;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.hero__ctas .btn {
  width: auto;
}

.hero--home .btn-ghost {
  width: auto;
  background: transparent;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero--home .btn-ghost:hover {
  border-color: color-mix(in srgb, var(--brand-foil) 42%, rgba(255, 255, 255, 0.5));
  background: rgba(255, 255, 255, 0.05);
}

.hero__features {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem 1.65rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(0.35rem, 1.5vw, 1rem);
  border-top: 1px solid color-mix(in srgb, var(--brand-foil) 22%, var(--border));
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  background-color: var(--brand-black);
}

.hero--home .hero__features {
  /* No margin-top — margin would expose the photo layer between card and bar */
  margin-top: 0;
  padding-top: 1.55rem;
  padding-bottom: 1.85rem;
}

.hero__features::-webkit-scrollbar {
  height: 3px;
}

.hero__features::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 767px) {
  /* One row: shrink typography + icons to fit; no horizontal scroll */
  .hero__features {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(0.12rem, 1vw, 0.45rem);
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
    overflow-x: hidden;
    overflow-y: visible;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior-x: none;
    scrollbar-width: none;
  }

  .hero__features::-webkit-scrollbar {
    display: none;
    height: 0;
  }

  .hero-feature {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    gap: clamp(0.15rem, 0.85vw, 0.4rem);
    align-items: flex-start;
  }

  .hero-feature__kicker {
    font-size: clamp(5px, 1.65vw, 10px);
    letter-spacing: 0.05em;
    line-height: 1.15;
  }

  .hero-feature__sub {
    font-size: clamp(6px, 2.05vw, 12px);
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .hero-feature__icon {
    width: clamp(16px, 4.9vw, 34px);
    height: clamp(16px, 4.9vw, 34px);
  }

  .hero-feature__icon svg {
    width: clamp(9px, 2.45vw, 16px);
    height: clamp(9px, 2.45vw, 16px);
  }
}

/* Extra squeeze on very narrow phones (e.g. SE) */
@media (max-width: 380px) {
  .hero-feature__kicker {
    font-size: clamp(4.5px, 1.55vw, 9px);
    letter-spacing: 0.04em;
  }

  .hero-feature__sub {
    font-size: clamp(5.5px, 1.95vw, 11px);
  }

  .hero-feature__icon {
    width: clamp(15px, 4.6vw, 32px);
    height: clamp(15px, 4.6vw, 32px);
  }

  .hero__features {
    gap: clamp(0.08rem, 0.85vw, 0.35rem);
  }
}

.hero-feature__text {
  min-width: 0;
}

.hero-feature:hover .hero-feature__kicker {
  color: var(--ink);
}

.hero-feature__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 166, 141, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-mushroom);
}

.hero-feature:hover .hero-feature__icon {
  border-color: color-mix(in srgb, var(--brand-foil) 65%, rgba(243, 239, 232, 0.45));
  color: var(--brand-foil);
}

.hero-feature__icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature__icon svg * {
  fill: none;
  stroke: currentColor;
}

/* Filled grain kernels (spawn): global stroke icons use fill:none on svg * */
.hero-feature__icon--grain svg {
  stroke: none;
  fill: none;
}

.hero-feature__icon--grain svg circle {
  fill: currentColor;
  stroke: none;
}

.hero-feature__kicker {
  display: block;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.hero-feature__sub {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--ink-muted);
  line-height: 1.35;
}

/* Cream editorial band (alternating with charcoal sections — brand cards) */
.band {
  width: 100%;
}

.band--cream {
  background: var(--brand-cream);
  color: var(--brand-charcoal);
  padding: 3.25rem 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--brand-foil) 22%, rgba(184, 166, 141, 0.45));
  border-bottom: 1px solid color-mix(in srgb, var(--brand-foil) 18%, rgba(184, 166, 141, 0.4));
}

.band__inner {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.band__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-earth);
  margin: 0 0 1rem;
}

.band__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin: 0 0 0.55rem;
  color: var(--brand-charcoal);
}

.band__title + .brand-rule {
  margin-bottom: 1.15rem;
}

.band__copy {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.78);
  margin: 0;
}

body[data-page="home"] .section {
  position: relative;
  margin-top: 0;
  margin-bottom: 2.5rem;
  padding: 2.75rem 0 1.75rem;
  background-color: var(--bg);
  background-image: var(--overlay-home-section);
  background-size: auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border);
}

body[data-page="home"] .section .section__head,
body[data-page="home"] .section .product-grid {
  position: relative;
  z-index: 1;
}

.section {
  margin-bottom: 3rem;
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--brand-foil) 18%, var(--border));
  padding-bottom: 0.75rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  margin: 0;
}

.section__link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.section__link:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.tile {
  --tile-img: url("assets/hero/desktop/dark-04-blue-oyster.png");
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #000000;
  border: 1px solid rgba(243, 239, 232, 0.12);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: flex-end;
  min-height: 168px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tiles .tile:nth-child(1) {
  --tile-img: url("assets/hero/desktop/dark-04-blue-oyster.png");
}

.tiles .tile:nth-child(2) {
  --tile-img: url("assets/catalog/grain-spawn-3-pack/main-dark.png");
}

.tiles .tile:nth-child(3) {
  --tile-img: url("assets/catalog/shiitake/hover-dark.png");
}

.tiles .tile:nth-child(4) {
  --tile-img: url("assets/catalog/colonized-grain-spawn/main-dark.png");
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--tile-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--overlay-tile);
}

.tile:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.tile:hover::before {
  transform: scale(1.06);
}

.tile__label,
.tile__hint {
  position: relative;
  z-index: 2;
}

.tile__label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.tile__hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.product-grid--home {
  margin-top: 0;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
}

.product-grid--home .product-body {
  padding: 0.85rem 0.9rem 1.25rem;
  font-size: 0.95rem;
}

.product-grid--home .product-title {
  font-size: 0.98rem;
}

.product-grid--home .price-row-product .price,
.product-grid--home .price-row-product .compare-at {
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .product-grid--home {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.85rem;
  }
}

.product-media__link {
  position: absolute;
  inset: 0;
}

/* Mycopia-inspired scroll banner: parallax dark photo, serif title overlay, brand-foil rule */
.scroll-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0907;
  color: var(--brand-cream);
  margin: 0;
}

.scroll-banner__bg {
  position: absolute;
  inset: -2% 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
  will-change: transform;
}

.scroll-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 7, 5, 0.78) 0%,
    rgba(8, 7, 5, 0.52) 38%,
    rgba(8, 7, 5, 0.32) 100%
  );
}

.scroll-banner--right .scroll-banner__scrim {
  background: linear-gradient(
    270deg,
    rgba(8, 7, 5, 0.82) 0%,
    rgba(8, 7, 5, 0.55) 38%,
    rgba(8, 7, 5, 0.28) 100%
  );
}

.scroll-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 60vh, 560px);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 6vw, 5rem);
  max-width: 1280px;
  margin: 0 auto;
}

.scroll-banner--right .scroll-banner__inner {
  justify-content: flex-end;
}

.scroll-banner__text {
  max-width: 38rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.scroll-banner__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-foil);
  margin: 0 0 0.85rem;
  font-weight: 400;
}

.scroll-banner__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin: 0 0 1.1rem;
  color: var(--brand-cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.scroll-banner__rule {
  display: block;
  width: 84px;
  height: 2px;
  background: var(--brand-foil);
  margin: 0 0 1.4rem;
  opacity: 0.95;
}

.scroll-banner__copy {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(243, 239, 232, 0.86);
  margin: 0 0 1.6rem;
  max-width: 32rem;
  font-weight: 300;
}

.scroll-banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.scroll-banner .btn-ghost {
  background: transparent;
  color: var(--brand-cream);
  border-color: rgba(243, 239, 232, 0.34);
}

.scroll-banner .btn-ghost:hover {
  border-color: var(--brand-foil);
  color: var(--brand-foil);
}

/* iOS Safari and small touch devices struggle with background-attachment: fixed.
   Fall back to a scroll-with-page background and keep the visual intact. */
@media (max-width: 900px), (hover: none) {
  .scroll-banner__bg {
    background-attachment: scroll;
    inset: 0;
  }
  .scroll-banner__scrim {
    background: linear-gradient(
      180deg,
      rgba(8, 7, 5, 0.45) 0%,
      rgba(8, 7, 5, 0.72) 70%,
      rgba(8, 7, 5, 0.85) 100%
    );
  }
  .scroll-banner--right .scroll-banner__inner,
  .scroll-banner .scroll-banner__inner {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-banner__bg {
    background-attachment: scroll;
  }
}

/* Regalis-inspired badge variants — small colored pill tags on product media */
.badge {
  border-radius: 2px;
  font-weight: 500;
}

.badge.best-seller {
  background: var(--brand-foil);
  color: var(--brand-charcoal);
  border-color: var(--brand-foil);
}

.badge.in-season {
  background: rgba(106, 78, 59, 0.92);
  color: var(--brand-cream);
  border-color: var(--brand-earth);
}

.badge.new {
  background: var(--brand-cream);
  color: var(--brand-charcoal);
  border-color: var(--brand-cream);
}

.badge.organic {
  background: transparent;
  color: var(--brand-cream);
  border-color: rgba(243, 239, 232, 0.55);
}

.filters-desktop-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.drawer-header__title {
  margin: 0;
  font-size: 1rem;
}

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

@media (min-width: 901px) {
  .drawer-header {
    display: none !important;
  }
}

/* Overlays */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 300;
}

.quick-shop-modal {
  position: fixed;
  z-index: 400;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, calc(100vw - 2rem));
  max-height: min(90vh, 880px);
  overflow: auto;
  background-color: var(--quick-shop-modal-solid);
  background-image: var(--quick-shop-modal-overlay);
  background-size: auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  padding: 2.5rem 1.5rem 1.5rem;
  color: var(--ink);
}

.quick-shop-modal[hidden] {
  display: none !important;
}

.icon-close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: none;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-muted);
}

.icon-close:hover {
  color: var(--ink);
}

.quick-shop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .quick-shop__grid {
    grid-template-columns: 1fr;
  }
}

.quick-shop__media {
  position: relative;
  background: var(--quick-shop-media-bg);
}

.quick-shop__media img {
  width: 100%;
  height: auto;
  display: block;
}

.quick-shop__info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.quick-shop__blurb {
  color: var(--ink-muted);
  margin: 0 0 1rem;
}

.qs-price-row {
  margin-bottom: 1rem;
}

.field-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.input {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  width: 100%;
  background-color: var(--input-bg);
  color: var(--ink);
}

/* select.input: avoid `background` shorthand so chevron longhands from `select` stay valid */
select.input {
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  background-color: var(--input-bg);
}

.input--qty {
  max-width: 72px;
}

.input--area {
  resize: vertical;
}

.input--inline {
  flex: 1;
  min-width: 0;
}

.quick-shop__details {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 1rem 0;
}

.quick-shop__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 350;
}

.drawer[hidden] {
  display: none !important;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(440px, 100%);
  background: var(--surface-solid);
  border-left: 1px solid var(--border);
  box-shadow: -16px 0 56px rgba(0, 0, 0, 0.55);
  padding: 1.25rem 1.25rem 2rem;
  overflow-y: auto;
}

.drawer--nav .drawer__panel {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--border);
  box-shadow: 16px 0 56px rgba(0, 0, 0, 0.55);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.drawer__head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 300;
}

.drawer__close {
  border: none;
  background: none;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  color: var(--ink-muted);
}

.drawer__close:hover {
  color: var(--ink);
}

.cart-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 1rem;
}

.cart-empty {
  font-size: 14px;
  color: var(--ink-muted);
  padding: 1rem 0;
}

.cart-empty[hidden] {
  display: none;
}

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

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.cart-line__thumb {
  display: block;
  line-height: 0;
  align-self: start;
}

.cart-line__thumb:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.cart-line__thumb:hover img {
  opacity: 0.92;
}

.cart-line__title {
  font-weight: 400;
  font-size: 14px;
}

a.cart-line__title {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.cart-line__title:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a.cart-line__title:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.cart-line__meta {
  font-size: 12px;
  color: var(--ink-muted);
}

.cart-line__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.linkish {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 12px;
  color: var(--ink-muted);
  cursor: pointer;
  text-decoration: underline;
}

.linkish:hover {
  color: var(--gold);
}

.cart-line__sum {
  font-weight: 400;
  font-size: 14px;
}

.cart-summary {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.cart-summary__fine {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 0 0 1rem;
}

.btn-checkout {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.85rem 1rem;
}

.btn-ghost {
  width: 100%;
  background: transparent;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0 2rem;
}

.mobile-nav a {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav__auth {
  margin-bottom: 0.15rem;
}

.mobile-nav__auth-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-nav__auth-row a {
  padding: 0;
  border-bottom: none;
}

.mobile-nav__auth-sep {
  color: var(--ink-muted);
  font-weight: 300;
  pointer-events: none;
}

.mobile-nav__signed-block {
  padding: 0.65rem 0 0.35rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__signed-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.25rem;
}

.mobile-nav__signed-email {
  display: block;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--ink);
  word-break: break-word;
}

.mobile-nav__auth > a[data-sign-out] {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 360;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none !important;
}

.site-notice-modal {
  z-index: 420;
  background: rgba(0, 0, 0, 0.72);
}

.site-notice-modal__panel {
  max-width: min(400px, 100%);
}

.site-notice-modal__title {
  font-family: var(--font-display);
  font-weight: 300;
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.site-notice-modal__message {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.45;
}

.site-notice-modal__ok {
  width: 100%;
  margin-top: 0.25rem;
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-account-link {
  display: none;
}

.account-page__lede {
  color: var(--ink-muted);
  margin-top: -0.25rem;
}

.account-card {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-solid) 88%, transparent);
}

.account-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.account-card__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 0 0.75rem;
}

.account-card__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.account-card__value {
  font-size: 15px;
  word-break: break-word;
}

.account-card__hint {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}

.account-card__hint a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.account-methods {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-muted);
  font-size: 15px;
}

.account-card__empty {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
}

.account-page__actions {
  margin-top: 2rem;
}

.modal__panel {
  position: relative;
  width: min(420px, 100%);
  background: var(--surface-solid);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
}

.modal__panel h2 {
  font-family: var(--font-display);
  margin-top: 0;
  font-weight: 300;
}

.modal__lede {
  color: var(--ink-muted);
  font-size: 14px;
}

.modal__meta {
  margin: 2.75rem 0 0;
  padding-top: 0.25rem;
  font-size: 13px;
  color: var(--ink-muted);
}

/* flex gap avoids margin-collapse with inline-flex Google button (sign-in modal felt “stuck together”) */
.modal__oauth-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 7vmin, 4.25rem);
  margin-top: 0.15rem;
}

.modal__oauth-stack .modal__meta--oauth {
  margin: 0;
  padding: 0;
  padding-top: 0.1rem;
}

.modal__meta a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal__meta a:hover {
  color: var(--gold);
}

.signup-switch {
  margin-top: 2.75rem;
  padding-top: 0.25rem;
  font-size: 14px;
  color: var(--ink-muted);
}

.signup-switch--stacked {
  margin-top: 0;
  padding-top: 0;
}

.signup-switch a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.signup-switch a:hover {
  color: var(--gold);
}

.modal__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.modal__divider::before,
.modal__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.modal__divider span {
  flex-shrink: 0;
}

.signup-divider {
  margin: 1.25rem 0;
}

.signup-auth .btn-google {
  margin-top: 0;
}

.btn-google {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid color-mix(in srgb, var(--brand-foil) 35%, rgba(243, 239, 232, 0.35));
  border-radius: 2px;
  background: #fff;
  color: var(--brand-charcoal);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-google:hover {
  border-color: color-mix(in srgb, var(--brand-foil) 55%, rgba(243, 239, 232, 0.5));
  background: color-mix(in srgb, var(--brand-cream) 40%, #fff);
}

.modal__panel label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.modal__panel .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.season-card {
  border: 1px solid var(--border);
  padding: 1.25rem;
  background: var(--surface-solid);
}

.season-card h3 {
  font-family: var(--font-display);
  margin-top: 0;
  font-weight: 300;
}

.footer-newsletter {
  background: var(--footer-newsletter-bg);
  color: var(--footer-muted);
  padding: 2.5rem 1.25rem;
  margin-top: 0;
  border-top: 1px solid var(--footer-border);
}

.footer-newsletter__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.footer-newsletter__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--footer-newsletter-eyebrow);
}

.footer-newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  margin: 0 0 1rem;
  color: var(--brand-charcoal);
  letter-spacing: 0.02em;
}

.footer-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.footer-fallback {
  text-align: center;
  color: var(--footer-muted);
}

.site-footer .input {
  background-color: rgba(255, 255, 255, 0.72);
  color: var(--brand-charcoal);
  border-color: color-mix(in srgb, var(--brand-foil) 32%, rgba(26, 26, 26, 0.22));
}

.site-footer .input::placeholder {
  color: rgba(26, 26, 26, 0.42);
}

.site-footer .btn-primary {
  background: var(--brand-charcoal);
  color: var(--brand-cream);
  border-color: var(--brand-charcoal);
}

.site-footer .btn-primary:hover {
  background: var(--brand-earth);
  border-color: var(--brand-earth);
  color: var(--brand-cream);
}

/* Product detail */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.product-page__media img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}

/* Fresh mushroom PDP: multi-photo gallery + hover zoom (spawn keeps single image above) */
.product-page__media--gallery {
  width: 100%;
}

.product-page__gallery-viewport {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--brand-black);
}

.product-page__gallery-zoom {
  overflow: hidden;
  aspect-ratio: 1;
}

.product-page__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  transition: transform 0.5s ease;
  transform-origin: center center;
}

@media (hover: hover) and (pointer: fine) {
  .product-page__media--gallery .product-page__gallery-viewport:hover .product-page__gallery-img {
    transform: scale(1.14);
  }
}

.product-page__gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 239, 232, 0.38);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  color: var(--brand-cream);
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.product-page__gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.product-page__gallery-arrow--prev {
  left: 0.5rem;
}

.product-page__gallery-arrow--next {
  right: 0.5rem;
}

.product-page__gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.product-page__gallery-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.product-page__gallery-dot.is-active {
  background: var(--brand-cream);
  border-color: var(--brand-cream);
}

.product-page__info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  margin: 0 0 0.75rem;
}

.product-page__blurb {
  color: var(--ink-muted);
}

.product-page__price {
  margin: 1rem 0;
}

.product-page__details {
  color: var(--ink-muted);
  font-size: 15px;
}

.product-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Collection & static pages: gradient only (no fixed "chrome" photos) */
body[data-page="collection"] .page-main {
  background-color: var(--bg);
  background-image: var(--overlay-page-accent);
  background-size: auto;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.page-main--narrow.prose {
  background: var(--prose-panel-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  padding: 1.5rem 1.35rem 2rem;
  border-radius: 3px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
  margin-top: 2.25rem;
}

/* Fill at least one screen below the sticky header so the cream footer isn’t visible until scroll */
body[data-page="product"] {
  min-height: 100dvh;
  background-color: var(--brand-black);
}

body[data-page="product"] .page-main {
  min-height: calc(100vh - 5.75rem);
  min-height: calc(100dvh - 5.75rem);
  min-height: calc(100svh - 5.75rem);
  background-color: var(--bg);
  background-image: var(--overlay-page-accent);
  background-size: auto;
  background-position: 0 0;
  background-repeat: no-repeat;
}

/* Spōr Assistant — popover above home FAB; transparent scrim, no backdrop blur */
.spor-assistant-open-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.spor-assistant-open-btn:hover {
  opacity: 0.88;
}

.spor-assistant-open-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--brand-foil) 70%, transparent);
  outline-offset: 2px;
}

/* Home landing: fixed launcher container with callout label + FAB */
.spor-assistant-launcher {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  z-index: 280;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

.spor-assistant-launcher > * {
  pointer-events: auto;
}

.spor-assistant-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brand-cream);
  color: var(--brand-charcoal);
  border: 1px solid color-mix(in srgb, var(--brand-foil) 42%, rgba(26, 26, 26, 0.14));
  border-radius: 14px;
  padding: 0.55rem 0.65rem 0.55rem 0.95rem;
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--brand-foil) 24%, transparent),
    0 14px 36px rgba(0, 0, 0, 0.42);
  max-width: min(18rem, calc(100vw - 2rem));
  transform-origin: 100% 100%;
  animation: spor-assistant-label-in 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2) 0.4s both,
    spor-assistant-label-bob 3.6s ease-in-out 1.2s infinite;
}

.spor-assistant-label::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: var(--brand-cream);
  border-right: 1px solid color-mix(in srgb, var(--brand-foil) 42%, rgba(26, 26, 26, 0.14));
  border-bottom: 1px solid color-mix(in srgb, var(--brand-foil) 42%, rgba(26, 26, 26, 0.14));
  transform: rotate(45deg);
  pointer-events: none;
}

.spor-assistant-label__open {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: inherit;
  line-height: 1.25;
  text-align: left;
}

.spor-assistant-label__text {
  display: inline-block;
}

.spor-assistant-label__close {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(26, 26, 26, 0.5);
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.spor-assistant-label__close:hover,
.spor-assistant-label__close:focus-visible {
  background: rgba(26, 26, 26, 0.08);
  color: var(--brand-charcoal);
  border-color: color-mix(in srgb, var(--brand-foil) 36%, rgba(26, 26, 26, 0.12));
  outline: none;
}

.spor-assistant-launcher--no-label .spor-assistant-label {
  display: none;
}

@keyframes spor-assistant-label-in {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spor-assistant-label-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .spor-assistant-label {
    animation: none;
  }
}

.spor-assistant-open-btn--float-home {
  position: static;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: var(--brand-cream);
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--brand-foil) 38%, rgba(26, 26, 26, 0.12));
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--brand-foil) 22%, transparent),
    0 14px 36px rgba(0, 0, 0, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spor-assistant-open-btn--float-home:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--brand-foil) 28%, transparent),
    0 18px 44px rgba(0, 0, 0, 0.48);
}

.spor-assistant-open-btn--float-home:focus-visible {
  outline-offset: 3px;
}

.spor-assistant-open-btn--float-home .spor-assistant-chat-icon {
  width: 24px;
  height: 24px;
}

@media (min-width: 960px) {
  .spor-assistant-launcher {
    right: max(1.35rem, env(safe-area-inset-right, 0px));
    bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
  }
  .spor-assistant-open-btn--float-home {
    width: 3.35rem;
    height: 3.35rem;
  }

  .spor-assistant-overlay {
    padding-right: max(1.35rem, env(safe-area-inset-right, 0px));
    padding-bottom: calc(4rem + 3.35rem + 0.5rem + env(safe-area-inset-bottom, 0px));
  }
}

.spor-assistant-chat-icon {
  display: block;
  flex-shrink: 0;
}

.spor-assistant-overlay {
  position: fixed;
  inset: 0;
  z-index: 370;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: clamp(5.5rem, 12vh, 7.5rem) max(1rem, env(safe-area-inset-right, 0px))
    calc(4.5rem + 3.25rem + 0.5rem + env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.spor-assistant-overlay > * {
  pointer-events: auto;
}

.spor-assistant-overlay[hidden] {
  display: none !important;
}

.spor-assistant-sheet {
  position: relative;
  width: min(calc(100vw - 2rem), 380px);
  max-width: min(calc(100vw - 2rem), 380px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 16px 14px;
  box-sizing: border-box;
  background: var(--brand-cream);
  color: var(--brand-charcoal);
  border: 1px solid color-mix(in srgb, var(--brand-foil) 42%, rgba(26, 26, 26, 0.14));
  border-radius: 18px;
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--brand-foil) 24%, transparent),
    0 22px 60px rgba(0, 0, 0, 0.45);
  animation: spor-assistant-sheet-in 0.22s cubic-bezier(0.2, 0.9, 0.3, 1.15) both;
}

.spor-assistant-sheet::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: var(--brand-cream);
  border-right: 1px solid color-mix(in srgb, var(--brand-foil) 42%, rgba(26, 26, 26, 0.14));
  border-bottom: 1px solid color-mix(in srgb, var(--brand-foil) 42%, rgba(26, 26, 26, 0.14));
  transform: rotate(45deg);
  pointer-events: none;
}

@keyframes spor-assistant-sheet-in {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.spor-assistant-launcher--open .spor-assistant-label {
  display: none;
}

.spor-assistant-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid color-mix(in srgb, var(--brand-foil) 22%, rgba(184, 166, 141, 0.45));
}

.spor-assistant-chat-head__brand {
  min-width: 0;
}

.spor-assistant-chat-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brand-charcoal);
}

.spor-assistant-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--brand-foil) 35%, rgba(26, 26, 26, 0.15));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--brand-charcoal);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.spor-assistant-close:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: color-mix(in srgb, var(--brand-foil) 55%, rgba(26, 26, 26, 0.2));
}

.spor-assistant-chat-messages {
  flex: 1;
  min-height: 220px;
  overflow: auto;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--brand-foil) 28%, rgba(26, 26, 26, 0.12));
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand-cream) 65%, #ffffff 35%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spor-assistant-chat-msg {
  max-width: 88%;
  padding: 9px 11px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.spor-assistant-chat-msg--user {
  align-self: flex-end;
  background: var(--brand-charcoal);
  color: var(--brand-cream);
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom-right-radius: 2px;
}

.spor-assistant-chat-msg--bot {
  align-self: flex-start;
  background: #fff;
  color: var(--brand-charcoal);
  border: 1px solid color-mix(in srgb, var(--brand-foil) 30%, rgba(26, 26, 26, 0.1));
  border-bottom-left-radius: 2px;
}

.spor-assistant-chat-msg--system {
  align-self: center;
  max-width: 96%;
  background: rgba(106, 78, 59, 0.08);
  color: var(--brand-earth);
  border: 1px solid color-mix(in srgb, var(--brand-foil) 20%, transparent);
  border-radius: 3px;
  font-size: 0.72rem;
}

.spor-assistant-chat-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 0;
}

.spor-assistant-chat-input-row .spor-assistant-input {
  min-width: 0;
  background: #fff;
  color: var(--brand-charcoal);
  border-color: color-mix(in srgb, var(--brand-foil) 35%, rgba(26, 26, 26, 0.2));
}

.spor-assistant-chat-input-row .spor-assistant-input:focus,
.spor-assistant-chat-input-row .spor-assistant-input:focus-visible {
  outline: none;
  border-color: color-mix(in srgb, var(--brand-foil) 35%, rgba(26, 26, 26, 0.2));
  box-shadow: none;
}

.spor-assistant-chat-input-row .spor-assistant-send {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--brand-charcoal);
  color: var(--brand-cream);
  border-color: var(--brand-charcoal);
}

.spor-assistant-chat-input-row .spor-assistant-send:hover:not([disabled]) {
  background: var(--brand-earth);
  border-color: var(--brand-earth);
  color: var(--brand-cream);
}

.spor-assistant-chat-input-row .spor-assistant-send[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}
