/* Appily Fourteen — Floret Atelier chrome (header, footer, hero shell) */
:root {
  --wine: #4A1942;
  --wine-deep: #2E0F28;
  --moss: #7BA889;
  --moss-deep: #5E8A6C;
  --wheat: #D4A574;
  --wheat-pale: #F0DFC8;
  --parchment: #F8F3EA;
  --parchment-2: #EDE4D6;
  --slate: #2E2433;
  --ink: #1A141F;
  --muted: #6B5F72;
  --white: #ffffff;
  --line: rgba(74, 25, 66, 0.14);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 28px;
  --radius-round: 999px;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow: 0 22px 50px rgba(46, 15, 40, 0.16);
  --shadow-soft: 0 8px 24px rgba(74, 25, 66, 0.1);
}

/* ── Lattice header ── */
.lattice-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(248, 243, 234, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--wine);
}
.spore-rail {
  background: linear-gradient(92deg, var(--wine-deep) 0%, var(--wine) 42%, var(--moss-deep) 100%);
  color: var(--parchment);
  overflow: hidden;
}
.spore-rail-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 6px 0;
  min-height: 34px;
}
.spore-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.spore-ticker {
  display: flex;
  gap: 28px;
  animation: spore-scroll 28s linear infinite;
  font-size: 0.66rem;
  font-weight: 600;
  opacity: 0.92;
}
.spore-ticker span::before {
  content: '◆';
  margin-right: 8px;
  color: var(--wheat);
}
@keyframes spore-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lattice-frame { padding: 12px 0 14px; }
.lattice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.42fr) minmax(0, 1fr);
  gap: 12px 16px;
  align-items: center;
}
.atelier-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.atelier-seal {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--wheat-pale);
}
.atelier-wordmark { display: flex; flex-direction: column; gap: 2px; }
.atelier-edition {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
}
.atelier-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.1;
  color: var(--wine-deep);
}
.atelier-name strong { font-weight: 700; color: var(--wine); }
.atelier-tag { font-size: 0.72rem; color: var(--muted); }

.lattice-nav-col { display: flex; justify-content: center; min-width: 0; }
.lattice-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  gap: 2px;
  padding: 4px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.lattice-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  width: 100%;
}
.lattice-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: var(--radius-round);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.2s, color 0.2s;
}
.lattice-link span {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: var(--wheat);
  font-weight: 700;
  flex-shrink: 0;
}
.lattice-link:hover,
.lattice-link.is-active {
  background: var(--wine);
  color: var(--parchment);
}
.lattice-link:hover span,
.lattice-link.is-active span { color: var(--wheat-pale); }
.lattice-link-accent { border: 1px dashed var(--moss); }

.lattice-brand-col { min-width: 0; }
.lattice-tools-col { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; min-width: 0; }
.lattice-search {
  display: flex;
  width: 100%;
  max-width: 280px;
  border: 2px solid var(--line);
  border-radius: var(--radius-round);
  overflow: hidden;
  background: var(--white);
}
.lattice-search input {
  flex: 1;
  border: 0;
  padding: 9px 14px;
  font: inherit;
  font-size: 0.84rem;
  background: transparent;
  min-width: 0;
}
.lattice-search button {
  border: 0;
  background: var(--moss);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0 16px;
  cursor: pointer;
}
.lattice-actions { display: flex; gap: 10px; align-items: center; }
.lattice-account {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wine);
}
.lattice-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-round);
  background: var(--wine);
  color: var(--parchment);
  font-size: 0.8rem;
  font-weight: 700;
}
.lattice-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--wheat);
  color: var(--wine-deep);
  font-size: 0.72rem;
}

.lattice-menu-btn,
.lattice-drawer-head,
.lattice-drawer-foot,
.lattice-backdrop { display: none; }

@media (min-width: 981px) and (max-width: 1240px) {
  .lattice-frame { padding: 10px 0 12px; }
  .lattice-grid { gap: 10px 12px; }
  .atelier-tag { display: none; }
  .atelier-name { font-size: 1.12rem; }
  .atelier-seal { width: 48px; height: 48px; }
  .lattice-link {
    padding: 6px 9px;
    font-size: 0.76rem;
    gap: 4px;
  }
  .lattice-link span { font-size: 0.54rem; }
  .lattice-search { max-width: 210px; }
  .lattice-search input { padding: 8px 10px; font-size: 0.78rem; }
  .lattice-search button { padding: 0 12px; font-size: 0.72rem; }
  .lattice-account { font-size: 0.76rem; }
  .lattice-cart { padding: 5px 11px; font-size: 0.74rem; }
}

@media (max-width: 980px) {
  .lattice-grid { grid-template-columns: 1fr auto; }
  .lattice-nav-col { grid-column: 1 / -1; order: 3; }
  .lattice-tools-col { align-items: stretch; }
  .lattice-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    margin-left: auto;
  }
  .lattice-menu-btn span {
    display: block;
    height: 2px;
    width: 20px;
    margin: 0 auto;
    background: var(--wine);
  }
  .lattice-nav-col { justify-content: flex-end; }
  .lattice-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    border-radius: 0;
    padding: 0;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    z-index: 90;
    overflow-y: auto;
  }
  .lattice-nav.is-open { transform: translateX(0); }
  .lattice-drawer-head,
  .lattice-drawer-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: var(--parchment-2);
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    color: var(--wine);
  }
  .lattice-drawer-foot {
    margin-top: auto;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    gap: 12px;
  }
  .lattice-drawer-foot a { font-size: 0.88rem; }
  .lattice-cart-link em {
    font-style: normal;
    background: var(--wine);
    color: var(--parchment);
    padding: 2px 8px;
    border-radius: var(--radius-round);
    margin-left: 6px;
  }
  .lattice-drawer-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
  }
  .lattice-drawer-close span,
  .lattice-drawer-close span::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: var(--wine);
    content: '';
  }
  .lattice-drawer-close span { transform: translate(-50%, -50%) rotate(45deg); }
  .lattice-drawer-close span::after { transform: rotate(90deg); }
  .lattice-links { flex-direction: column; padding: 12px; gap: 4px; flex-wrap: nowrap; }
  .lattice-link { border-radius: var(--radius); white-space: normal; }
  .lattice-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 31, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    z-index: 80;
  }
  .lattice-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open { overflow: hidden; }
  .lattice-nav-col .lattice-menu-btn { position: absolute; top: 12px; right: 16px; }
  .lattice-nav-col { position: relative; }
}

/* ── Seed footer mosaic ── */
.seed-footer {
  margin-top: auto;
  background: var(--slate);
  color: var(--parchment);
  position: relative;
}
.seed-footer-vein {
  height: 6px;
  background: linear-gradient(90deg, var(--wheat), var(--moss), var(--wine), var(--wheat));
}
.seed-footer-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 1.2fr;
  gap: 28px 24px;
  padding: 48px 0 36px;
}
.seed-panel-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 12px 0 8px;
}
.seed-panel-lede { color: rgba(248,243,234,0.82); font-size: 0.92rem; margin: 0 0 12px; }
.seed-panel-entity { font-size: 0.78rem; opacity: 0.7; margin: 0; }
.seed-heading {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wheat);
  margin: 0 0 14px;
}
.seed-links { display: flex; flex-direction: column; gap: 8px; }
.seed-links a {
  font-size: 0.88rem;
  color: rgba(248,243,234,0.88);
  transition: color 0.2s;
}
.seed-links a:hover { color: var(--wheat); }
.seed-links-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.seed-links-inline { flex-direction: row; flex-wrap: wrap; gap: 10px 16px; }
.seed-contact-block { margin-top: 18px; font-size: 0.84rem; opacity: 0.85; }
.seed-contact-block p { margin: 0 0 6px; }
.seed-footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0 18px;
  font-size: 0.78rem;
  opacity: 0.75;
}
.seed-footer-base-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .seed-footer-mosaic { grid-template-columns: 1fr 1fr; }
  .seed-panel-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .seed-footer-mosaic { grid-template-columns: 1fr; }
  .seed-links-columns { grid-template-columns: 1fr; }
}

/* ── Pollen Press homepage (Appily Fourteen) ── */
.appily-fourteen.page-press .press-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background: linear-gradient(160deg, var(--wine-deep) 0%, #3a1534 40%, var(--slate) 100%);
  color: var(--parchment);
}
.appily-fourteen.page-press .press-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press .press-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 16rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
}
.appily-fourteen.page-press .press-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,165,116,0.15);
  left: 58%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.appily-fourteen.page-press .press-ring-1 { width: 420px; height: 420px; }
.appily-fourteen.page-press .press-ring-2 { width: 520px; height: 520px; opacity: 0.7; }
.appily-fourteen.page-press .press-ring-3 { width: 620px; height: 620px; opacity: 0.4; }

.appily-fourteen.page-press .press-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(300px, 1.1fr) auto;
  gap: 32px 28px;
  align-items: center;
}
.appily-fourteen.page-press .press-vol {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wheat);
  margin-bottom: 10px;
}
.appily-fourteen.page-press .press-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,243,234,0.65);
  margin: 0 0 14px;
}
.appily-fourteen.page-press .press-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--parchment);
}
.appily-fourteen.page-press .press-hero-copy h1 em {
  font-style: italic;
  color: var(--wheat);
}
.appily-fourteen.page-press .press-lede {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(248,243,234,0.82);
  max-width: 44ch;
  margin: 0 0 24px;
}
.appily-fourteen.page-press .press-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.appily-fourteen.page-press .btn-ghost {
  border: 2px solid rgba(248,243,234,0.35);
  color: var(--parchment);
  background: transparent;
  padding: 12px 24px;
  border-radius: var(--radius-round);
  font-weight: 700;
  font-size: 0.9rem;
}
.appily-fourteen.page-press .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--wheat);
}
.appily-fourteen.page-press .btn-primary {
  background: linear-gradient(135deg, var(--wheat), #e8c08a);
  color: var(--wine-deep);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* Specimen dial */
.appily-fourteen.page-press .press-dial {
  position: relative;
  width: min(100%, 380px);
  height: 380px;
  margin: 0 auto;
}
.appily-fourteen.page-press .press-dial-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--wheat);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  z-index: 2;
}
.appily-fourteen.page-press .press-dial-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appily-fourteen.page-press .press-dial-cap {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 10px 10px;
  background: linear-gradient(transparent, rgba(46,15,40,0.92));
  text-align: center;
  font-size: 0.68rem;
}
.appily-fourteen.page-press .press-dial-cap em {
  display: block;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wheat);
  margin-bottom: 2px;
}
.appily-fourteen.page-press .press-dial-cap strong {
  display: block;
  font-size: 0.72rem;
  line-height: 1.25;
}
.appily-fourteen.page-press .press-dial-cap span {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  color: var(--wheat-pale);
}
.appily-fourteen.page-press .press-orbit {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(248,243,234,0.5);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, border-color 0.2s;
  z-index: 1;
}
.appily-fourteen.page-press .press-orbit:hover {
  transform: scale(1.08);
  border-color: var(--wheat);
  z-index: 3;
}
.appily-fourteen.page-press .press-orbit img { width: 100%; height: 100%; object-fit: cover; }
.appily-fourteen.page-press .press-orbit-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.appily-fourteen.page-press .press-orbit-2 { top: 50%; right: 0; transform: translateY(-50%); }
.appily-fourteen.page-press .press-orbit-3 { bottom: 8%; left: 50%; transform: translateX(-50%); }
.appily-fourteen.page-press .press-orbit-4 { top: 50%; left: 0; transform: translateY(-50%); }
.appily-fourteen.page-press .press-orbit-1:hover { transform: translateX(-50%) scale(1.08); }
.appily-fourteen.page-press .press-orbit-3:hover { transform: translateX(-50%) scale(1.08); }
.appily-fourteen.page-press .press-orbit-2:hover { transform: translateY(-50%) scale(1.08); }
.appily-fourteen.page-press .press-orbit-4:hover { transform: translateY(-50%) scale(1.08); }

/* Stat pillars */
.appily-fourteen.page-press .press-pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.appily-fourteen.page-press .press-pillars li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
}
.appily-fourteen.page-press .pillar-bar {
  display: block;
  width: 28px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-round);
  position: relative;
  overflow: hidden;
}
.appily-fourteen.page-press .pillar-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--h, 70%);
  background: linear-gradient(180deg, var(--moss), var(--wheat));
  border-radius: inherit;
}
.appily-fourteen.page-press .press-pillars strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wheat);
}
.appily-fourteen.page-press .press-pillars em {
  font-style: normal;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* Index ladder */
.appily-fourteen.page-press .press-index {
  padding: 48px 0;
  background: var(--parchment);
  border-bottom: 3px solid var(--wine);
}
.appily-fourteen.page-press .press-index-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 24px;
  margin-bottom: 24px;
}
.appily-fourteen.page-press .press-index-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-deep);
  font-weight: 700;
  width: 100%;
}
.appily-fourteen.page-press .press-index-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--wine-deep);
  flex: 1;
}
.appily-fourteen.page-press .press-index-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--line);
}
.appily-fourteen.page-press .press-index-list li {
  border-bottom: 1px solid var(--line);
}
.appily-fourteen.page-press .press-index-list a {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 8px;
  transition: background 0.2s, padding-left 0.2s;
}
.appily-fourteen.page-press .press-index-list a:hover {
  background: var(--white);
  padding-left: 16px;
}
.appily-fourteen.page-press .index-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wheat);
}
.appily-fourteen.page-press .index-name {
  font-weight: 600;
  color: var(--wine-deep);
  font-size: 1rem;
}
.appily-fourteen.page-press .index-arrow {
  color: var(--moss);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
}
.appily-fourteen.page-press .press-index-list a:hover .index-arrow { opacity: 1; }

/* Specimen sheets — alternating bands */
.appily-fourteen.page-press .press-specimens {
  padding: 56px 0;
  background: var(--white);
}
.appily-fourteen.page-press .press-section-head {
  margin-bottom: 36px;
  max-width: 640px;
}
.appily-fourteen.page-press .press-section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  max-width: none;
}
.appily-fourteen.page-press .press-section-head h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press .press-section-head p {
  margin: 0;
  color: var(--muted);
}
.appily-fourteen.page-press .press-specimen-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.appily-fourteen.page-press .press-specimen {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 20px;
  background: var(--parchment);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
}
.appily-fourteen.page-press .press-specimen-reverse {
  direction: rtl;
}
.appily-fourteen.page-press .press-specimen-reverse > * {
  direction: ltr;
}
.appily-fourteen.page-press .press-specimen-photo {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press .press-specimen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appily-fourteen.page-press .press-specimen-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--wine);
  color: var(--parchment);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-round);
}
.appily-fourteen.page-press .press-specimen-line {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss-deep);
  font-weight: 700;
}
.appily-fourteen.page-press .press-specimen-meta h3 {
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.appily-fourteen.page-press .press-specimen-meta h3 a {
  color: var(--wine-deep);
  text-decoration: none;
}
.appily-fourteen.page-press .press-specimen-meta h3 a:hover { color: var(--wine); }
.appily-fourteen.page-press .press-specimen-sku {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 16px;
  font-family: ui-monospace, monospace;
}
.appily-fourteen.page-press .press-specimen-foot {
  display: flex;
  align-items: center;
  gap: 16px;
}
.appily-fourteen.page-press .press-specimen-foot .price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--wine);
}
.appily-fourteen.page-press .btn-soft {
  background: var(--wheat-pale);
  color: var(--wine-deep);
  border: 2px solid rgba(74,25,66,0.1);
}

/* Dispatch field note */
.appily-fourteen.page-press .press-dispatch {
  padding: 56px 0;
  background: var(--parchment-2);
}
.appily-fourteen.page-press .press-dispatch-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.appily-fourteen.page-press .press-dispatch-note {
  position: relative;
  padding: 32px 32px 32px 40px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 4px 24px 24px 4px;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press .press-dispatch-note::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: repeating-linear-gradient(
    180deg,
    var(--wine) 0,
    var(--wine) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.35;
}
.appily-fourteen.page-press .press-stamp {
  display: inline-block;
  padding: 4px 12px;
  border: 2px solid var(--wine);
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-3deg);
  margin-bottom: 12px;
}
.appily-fourteen.page-press .press-dispatch-note .eyebrow {
  color: var(--moss-deep);
  margin-bottom: 8px;
}
.appily-fourteen.page-press .press-dispatch-note h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--wine-deep);
  margin: 0 0 12px;
  line-height: 1.25;
}
.appily-fourteen.page-press .press-dispatch-note p {
  color: var(--muted);
  margin: 0 0 20px;
}
.appily-fourteen.page-press .press-dispatch-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--wine);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 0.2s;
}
.appily-fourteen.page-press .press-dispatch-card:hover { transform: rotate(0deg); }
.appily-fourteen.page-press .press-dispatch-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.appily-fourteen.page-press .press-dispatch-cap {
  display: block;
  padding: 14px 16px;
  background: var(--wine);
  color: var(--parchment);
  font-weight: 700;
  font-size: 0.88rem;
}

/* Seed packet vault — horizontal scroll */
.appily-fourteen.page-press .press-vault {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--white), var(--parchment));
}
.appily-fourteen.page-press .section-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wine);
  white-space: nowrap;
}
.appily-fourteen.page-press .section-link:hover { color: var(--moss-deep); }
.appily-fourteen.page-press .press-vault-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.appily-fourteen.page-press .press-packet {
  flex: 0 0 180px;
  scroll-snap-align: start;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.appily-fourteen.page-press .press-packet:hover {
  transform: translateY(-6px);
  border-color: var(--wine);
}
.appily-fourteen.page-press .press-packet-tear {
  height: 10px;
  background: var(--parchment);
  clip-path: polygon(
    0% 100%, 4% 0%, 8% 100%, 12% 0%, 16% 100%, 20% 0%, 24% 100%, 28% 0%, 32% 100%,
    36% 0%, 40% 100%, 44% 0%, 48% 100%, 52% 0%, 56% 100%, 60% 0%, 64% 100%, 68% 0%,
    72% 100%, 76% 0%, 80% 100%, 84% 0%, 88% 100%, 92% 0%, 96% 100%, 100% 0%, 100% 100%
  );
}
.appily-fourteen.page-press .press-packet-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 2px dashed var(--line);
}
.appily-fourteen.page-press .press-packet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appily-fourteen.page-press .press-packet-body {
  padding: 12px 14px 16px;
}
.appily-fourteen.page-press .press-packet-body h3 {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.3;
}
.appily-fourteen.page-press .press-packet-body .price {
  font-weight: 800;
  color: var(--wine);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .appily-fourteen.page-press .press-hero-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .appily-fourteen.page-press .press-lede { margin-left: auto; margin-right: auto; }
  .appily-fourteen.page-press .press-cta-row { justify-content: center; }
  .appily-fourteen.page-press .press-pillars {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }
  .appily-fourteen.page-press .press-ring { left: 50%; }
  .appily-fourteen.page-press .press-watermark { right: 50%; transform: translate(50%, -50%); opacity: 0.5; }
  .appily-fourteen.page-press .press-specimen,
  .appily-fourteen.page-press .press-specimen-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .appily-fourteen.page-press .press-dispatch-grid { grid-template-columns: 1fr; }
  .appily-fourteen.page-press .press-dispatch-card { transform: none; max-width: 360px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .appily-fourteen.page-press .press-hero { padding: 36px 0 48px; }
  .appily-fourteen.page-press .press-dial { height: 320px; width: 300px; }
  .appily-fourteen.page-press .press-dial-core { width: 160px; height: 160px; }
  .appily-fourteen.page-press .press-orbit { width: 56px; height: 56px; }
  .appily-fourteen.page-press .press-index-list a {
    grid-template-columns: 44px 1fr auto;
    gap: 10px;
  }
  .appily-fourteen.page-press .index-arrow { opacity: 1; }
}

/* ── Pollen Press shop — seed register ── */
.appily-fourteen.page-press-shop .register-mast {
  position: relative;
  padding: 44px 0 36px;
  background: linear-gradient(145deg, var(--wine-deep) 0%, var(--wine) 55%, #3d1538 100%);
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-shop .register-mast-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-shop .register-watermark {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 700;
  opacity: 0.07;
  line-height: 1;
  letter-spacing: -0.04em;
}
.appily-fourteen.page-press-shop .register-ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--wheat) 0 12px,
    transparent 12px 20px
  );
  opacity: 0.45;
}
.appily-fourteen.page-press-shop .register-mast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(180px, 240px);
  gap: 32px;
  align-items: start;
}
.appily-fourteen.page-press-shop .register-vol {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 10px;
}
.appily-fourteen.page-press-shop .register-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.12;
  max-width: 18ch;
}
.appily-fourteen.page-press-shop .register-title em {
  font-style: italic;
  color: var(--wheat);
}
.appily-fourteen.page-press-shop .register-lede {
  margin: 0 0 22px;
  font-size: 0.92rem;
  opacity: 0.82;
  max-width: 48ch;
}
.appily-fourteen.page-press-shop .register-lookup-bar {
  display: flex;
  align-items: stretch;
  max-width: 440px;
  border: 2px solid rgba(248, 243, 234, 0.35);
  border-radius: var(--radius-round);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}
.appily-fourteen.page-press-shop .register-lookup-tag {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(248, 243, 234, 0.2);
}
.appily-fourteen.page-press-shop .register-lookup-bar input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--parchment);
  padding: 12px 14px;
  font-size: 0.92rem;
}
.appily-fourteen.page-press-shop .register-lookup-bar input::placeholder {
  color: rgba(248, 243, 234, 0.45);
}
.appily-fourteen.page-press-shop .register-lookup-bar button {
  border: 0;
  background: var(--wheat);
  color: var(--wine-deep);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.appily-fourteen.page-press-shop .register-lookup-bar button:hover {
  background: var(--parchment);
}
.appily-fourteen.page-press-shop .register-counter {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(248, 243, 234, 0.22);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: center;
}
.appily-fourteen.page-press-shop .register-counter-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(248, 243, 234, 0.25);
}
.appily-fourteen.page-press-shop .register-counter-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--wheat);
}
.appily-fourteen.page-press-shop .register-counter-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}
.appily-fourteen.page-press-shop .register-counter-range {
  margin: 0 0 10px;
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.45;
}
.appily-fourteen.page-press-shop .register-counter-clear {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wheat);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.appily-fourteen.page-press-shop .register-counter-clear:hover {
  color: var(--parchment);
}

.appily-fourteen.page-press-shop .register-floor {
  padding: 32px 0 64px;
  background: var(--parchment);
}
.appily-fourteen.page-press-shop .register-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}
.appily-fourteen.page-press-shop .register-spine {
  position: sticky;
  top: 96px;
}
.appily-fourteen.page-press-shop .register-spine-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-shop .register-spine-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.appily-fourteen.page-press-shop .register-spine-tab {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  border: 2px solid var(--line);
  background: var(--white);
  font-size: 0.82rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.appily-fourteen.page-press-shop .register-spine-tab:hover {
  border-color: var(--wine);
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-shop .register-spine-tab.is-active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--parchment);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.appily-fourteen.page-press-shop .spine-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.7;
}
.appily-fourteen.page-press-shop .register-spine-tab.is-active .spine-num {
  color: var(--wheat);
  opacity: 1;
}
.appily-fourteen.page-press-shop .spine-name {
  font-weight: 600;
  line-height: 1.25;
}
.appily-fourteen.page-press-shop .spine-qty {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-round);
  background: var(--parchment);
  color: var(--wine);
}
.appily-fourteen.page-press-shop .register-spine-tab.is-active .spine-qty {
  background: rgba(255, 255, 255, 0.15);
  color: var(--parchment);
}
.appily-fourteen.page-press-shop .register-spine-tab.tone-meadow { border-left: 4px solid var(--moss); }
.appily-fourteen.page-press-shop .register-spine-tab.tone-heritage { border-left: 4px solid #8b6f4e; }
.appily-fourteen.page-press-shop .register-spine-tab.tone-cut { border-left: 4px solid #c45c7a; }
.appily-fourteen.page-press-shop .register-spine-tab.tone-trellis { border-left: 4px solid #5a8f6a; }
.appily-fourteen.page-press-shop .register-spine-tab.tone-scent { border-left: 4px solid #b8860b; }
.appily-fourteen.page-press-shop .register-spine-tab.tone-all { border-left: 4px solid var(--wine); }

.appily-fourteen.page-press-shop .register-sheet {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.appily-fourteen.page-press-shop .register-sheet-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 16px 22px;
  border-bottom: 2px dashed var(--line);
  background: linear-gradient(180deg, var(--parchment), var(--white));
}
.appily-fourteen.page-press-shop .register-sheet-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-shop .register-sheet-filter {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-round);
  background: var(--wine);
  color: var(--parchment);
}
.appily-fourteen.page-press-shop .register-sheet-meta {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--muted);
}

.appily-fourteen.page-press-shop .register-stream {
  list-style: none;
  margin: 0;
  padding: 0;
}
.appily-fourteen.page-press-shop .register-row {
  display: grid;
  grid-template-columns: 52px 88px 1fr 1fr minmax(120px, 160px);
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.appily-fourteen.page-press-shop .register-row:last-child {
  border-bottom: 0;
}
.appily-fourteen.page-press-shop .register-row:hover {
  background: rgba(248, 243, 234, 0.55);
}
.appily-fourteen.page-press-shop .register-row-index {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wine);
  opacity: 0.55;
}
.appily-fourteen.page-press-shop .register-row-stamp {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--line);
  box-shadow: inset 0 0 0 2px var(--white);
  transition: transform 0.2s, border-color 0.2s;
}
.appily-fourteen.page-press-shop .register-row-stamp:hover {
  transform: scale(1.06);
  border-color: var(--wine);
}
.appily-fourteen.page-press-shop .register-row-stamp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appily-fourteen.page-press-shop .register-row-badge {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: var(--radius-round);
  background: var(--wheat);
  color: var(--wine-deep);
  white-space: nowrap;
}
.appily-fourteen.page-press-shop .register-row-body h2 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.appily-fourteen.page-press-shop .register-row-body h2 a {
  color: var(--wine-deep);
}
.appily-fourteen.page-press-shop .register-row-body h2 a:hover {
  color: var(--moss-deep);
}
.appily-fourteen.page-press-shop .register-row-line {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss-deep);
  margin-bottom: 4px;
}
.appily-fourteen.page-press-shop .register-row-sku,
.appily-fourteen.page-press-shop .register-row-variant {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.appily-fourteen.page-press-shop .register-row-leader {
  align-self: center;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 4px,
    transparent 4px 10px
  );
  min-width: 24px;
}
.appily-fourteen.page-press-shop .register-row-action {
  text-align: right;
}
.appily-fourteen.page-press-shop .register-row-price {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--wine);
  margin-bottom: 8px;
}
.appily-fourteen.page-press-shop .register-row-open {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-round);
  border: 2px solid var(--wine);
  color: var(--wine);
  transition: background 0.2s, color 0.2s;
}
.appily-fourteen.page-press-shop .register-row-open:hover {
  background: var(--wine);
  color: var(--parchment);
}
.appily-fourteen.page-press-shop .register-row.tone-meadow .register-row-stamp { border-color: rgba(123, 168, 137, 0.65); }
.appily-fourteen.page-press-shop .register-row.tone-heritage .register-row-stamp { border-color: rgba(139, 111, 78, 0.65); }
.appily-fourteen.page-press-shop .register-row.tone-cut .register-row-stamp { border-color: rgba(196, 92, 122, 0.65); }
.appily-fourteen.page-press-shop .register-row.tone-trellis .register-row-stamp { border-color: rgba(90, 143, 106, 0.65); }
.appily-fourteen.page-press-shop .register-row.tone-scent .register-row-stamp { border-color: rgba(184, 134, 11, 0.65); }

.appily-fourteen.page-press-shop .register-empty {
  padding: 56px 24px;
  text-align: center;
}
.appily-fourteen.page-press-shop .register-empty-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px dashed var(--line);
  font-size: 1.6rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.appily-fourteen.page-press-shop .register-empty p {
  margin: 0;
  font-weight: 700;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-shop .register-empty .sub {
  margin: 8px 0 20px;
  font-weight: 400;
  color: var(--muted);
}

.appily-fourteen.page-press-shop .register-pagination {
  padding: 20px 22px 24px;
  border-top: 2px dashed var(--line);
  background: var(--parchment);
}
.appily-fourteen.page-press-shop .register-pagination .catalog-pagination {
  margin: 0;
}
.appily-fourteen.page-press-shop .register-pagination .pagination-inner {
  justify-content: center;
  gap: 8px;
}
.appily-fourteen.page-press-shop .register-pagination .pagination-btn,
.appily-fourteen.page-press-shop .register-pagination .pagination-num {
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--wine);
  font-weight: 700;
}
.appily-fourteen.page-press-shop .register-pagination .pagination-num.is-active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--parchment);
}
.appily-fourteen.page-press-shop .register-pagination .pagination-btn.is-disabled {
  opacity: 0.4;
}

@media (max-width: 980px) {
  .appily-fourteen.page-press-shop .register-mast-grid {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-shop .register-counter {
    max-width: 280px;
  }
  .appily-fourteen.page-press-shop .register-shell {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-shop .register-spine {
    position: static;
  }
  .appily-fourteen.page-press-shop .register-spine-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .appily-fourteen.page-press-shop .register-spine-list li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .appily-fourteen.page-press-shop .register-spine-tab {
    min-width: 168px;
    transform: none !important;
  }
  .appily-fourteen.page-press-shop .register-row {
    grid-template-columns: 44px 72px 1fr;
    grid-template-rows: auto auto;
  }
  .appily-fourteen.page-press-shop .register-row-leader {
    display: none;
  }
  .appily-fourteen.page-press-shop .register-row-action {
    grid-column: 2 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding-left: 0;
  }
  .appily-fourteen.page-press-shop .register-row-price {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .appily-fourteen.page-press-shop .register-mast {
    padding: 32px 0 28px;
  }
  .appily-fourteen.page-press-shop .register-title {
    max-width: none;
  }
  .appily-fourteen.page-press-shop .register-lookup-bar {
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
  }
  .appily-fourteen.page-press-shop .register-lookup-tag {
    width: 100%;
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 243, 234, 0.2);
  }
  .appily-fourteen.page-press-shop .register-lookup-bar button {
    width: 100%;
    padding: 12px;
  }
  .appily-fourteen.page-press-shop .register-row {
    grid-template-columns: 64px 1fr;
    gap: 12px;
    padding: 16px;
  }
  .appily-fourteen.page-press-shop .register-row-index {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.82rem;
    justify-self: end;
  }
  .appily-fourteen.page-press-shop .register-row-stamp {
    grid-row: 1 / 3;
    width: 64px;
    height: 64px;
  }
  .appily-fourteen.page-press-shop .register-row-body {
    grid-column: 2;
  }
  .appily-fourteen.page-press-shop .register-row-action {
    grid-column: 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ── Pollen Press track & support — dispatch bureau ── */
.appily-fourteen.page-press-track .pollen-beacon {
  position: relative;
  padding: 44px 0 32px;
  background: linear-gradient(155deg, var(--wine-deep) 0%, var(--wine) 50%, #351430 100%);
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-track .pollen-beacon-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-track .pollen-beacon-watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 700;
  opacity: 0.06;
  line-height: 1;
}
.appily-fourteen.page-press-track .pollen-beacon-ring {
  position: absolute;
  border: 1px solid rgba(248, 243, 234, 0.12);
  border-radius: 50%;
  left: 72%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.appily-fourteen.page-press-track .pollen-beacon-ring-1 { width: 280px; height: 280px; }
.appily-fourteen.page-press-track .pollen-beacon-ring-2 { width: 380px; height: 380px; opacity: 0.55; }
.appily-fourteen.page-press-track .pollen-beacon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(200px, 260px);
  gap: 32px;
  align-items: center;
}
.appily-fourteen.page-press-track .pollen-beacon-vol {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 10px;
}
.appily-fourteen.page-press-track .pollen-beacon-copy h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
  max-width: 20ch;
}
.appily-fourteen.page-press-track .pollen-beacon-copy h1 em {
  font-style: italic;
  color: var(--wheat);
}
.appily-fourteen.page-press-track .pollen-beacon-lede {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.82;
  max-width: 46ch;
  line-height: 1.55;
}
.appily-fourteen.page-press-track .pollen-beacon-signal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(248, 243, 234, 0.22);
  background: rgba(0, 0, 0, 0.15);
  text-align: center;
}
.appily-fourteen.page-press-track .pollen-beacon-orb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(248, 243, 234, 0.35), rgba(248, 243, 234, 0.08));
  border: 3px solid rgba(248, 243, 234, 0.35);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.appily-fourteen.page-press-track .pollen-beacon-pulse {
  position: absolute;
  top: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(212, 165, 116, 0.4);
  opacity: 0;
  animation: none;
}
.appily-fourteen.page-press-track .pollen-beacon-signal.is-idle .pollen-beacon-orb {
  box-shadow: 0 0 24px rgba(212, 165, 116, 0.25);
}
.appily-fourteen.page-press-track .pollen-beacon-signal.is-idle .pollen-beacon-pulse {
  animation: pollen-pulse 2.4s ease-out infinite;
}
.appily-fourteen.page-press-track .pollen-beacon-signal.is-found .pollen-beacon-orb {
  background: radial-gradient(circle at 35% 35%, var(--moss), #4a7a58);
  border-color: var(--moss);
  box-shadow: 0 0 32px rgba(123, 168, 137, 0.55);
}
.appily-fourteen.page-press-track .pollen-beacon-signal.is-miss .pollen-beacon-orb {
  background: radial-gradient(circle at 35% 35%, #c45c7a, #8b3a52);
  border-color: #c45c7a;
  box-shadow: 0 0 28px rgba(196, 92, 122, 0.45);
}
.appily-fourteen.page-press-track .pollen-beacon-status {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.appily-fourteen.page-press-track .pollen-beacon-code {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}
.appily-fourteen.page-press-track .pollen-beacon-ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--wheat) 0 10px, transparent 10px 18px);
  opacity: 0.4;
}
@keyframes pollen-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}

.appily-fourteen.page-press-track .pollen-desk {
  padding: 36px 0 64px;
  background: var(--parchment);
}
.appily-fourteen.page-press-track .pollen-desk-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
.appily-fourteen.page-press-track .specimen-slip {
  position: relative;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-track .specimen-slip-tear {
  height: 8px;
  background: var(--parchment);
  clip-path: polygon(
    0% 100%, 3% 0%, 6% 100%, 9% 0%, 12% 100%, 15% 0%, 18% 100%, 21% 0%, 24% 100%, 27% 0%, 30% 100%,
    33% 0%, 36% 100%, 39% 0%, 42% 100%, 45% 0%, 48% 100%, 51% 0%, 54% 100%, 57% 0%, 60% 100%, 63% 0%,
    66% 100%, 69% 0%, 72% 100%, 75% 0%, 78% 100%, 81% 0%, 84% 100%, 87% 0%, 90% 100%, 93% 0%, 96% 100%, 100% 0%, 100% 100%
  );
}
.appily-fourteen.page-press-track .specimen-slip-tear-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.appily-fourteen.page-press-track .specimen-slip-tear-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(180deg);
}
.appily-fourteen.page-press-track .specimen-slip-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
  padding-top: 8px;
}
.appily-fourteen.page-press-track .specimen-slip-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px dashed var(--wine);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  text-align: center;
  line-height: 1.15;
  padding: 4px;
}
.appily-fourteen.page-press-track .specimen-slip-label {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
.appily-fourteen.page-press-track .specimen-slip-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-track .specimen-slip-no {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.appily-fourteen.page-press-track .specimen-slip-note {
  margin: 0 0 22px;
  font-size: 0.88rem;
  color: var(--muted);
}
.appily-fourteen.page-press-track .specimen-field {
  margin-bottom: 16px;
}
.appily-fourteen.page-press-track .specimen-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-track .specimen-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: var(--parchment);
  transition: border-color 0.2s;
}
.appily-fourteen.page-press-track .specimen-field input:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--white);
}
.appily-fourteen.page-press-track .specimen-slip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.appily-fourteen.page-press-track .btn-ghost {
  border: 2px solid var(--wine);
  color: var(--wine);
  background: transparent;
  font-weight: 700;
}
.appily-fourteen.page-press-track .btn-ghost:hover {
  background: var(--wine);
  color: var(--parchment);
}

.appily-fourteen.page-press-track .atelier-index-rail {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-track .atelier-index-title {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-track .atelier-index-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.appily-fourteen.page-press-track .atelier-index-link {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 8px;
  border-radius: var(--radius-md);
  transition: background 0.15s, transform 0.15s;
}
.appily-fourteen.page-press-track .atelier-index-link:hover {
  background: var(--parchment);
  transform: translateX(4px);
}
.appily-fourteen.page-press-track .index-link-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wheat);
  background: var(--wine);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 6px 0;
}
.appily-fourteen.page-press-track .index-link-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
}
.appily-fourteen.page-press-track .index-link-body strong {
  color: var(--wine-deep);
  font-weight: 700;
}
.appily-fourteen.page-press-track .index-link-body span {
  color: var(--muted);
  font-size: 0.76rem;
}

.appily-fourteen.page-press-track .pollen-reveal {
  margin-top: 36px;
}
.appily-fourteen.page-press-track .dispatch-specimen {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow);
}
.appily-fourteen.page-press-track .dispatch-specimen-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--line);
}
.appily-fourteen.page-press-track .dispatch-specimen-wax {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: 3px solid var(--wheat);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}
.appily-fourteen.page-press-track .dispatch-specimen-titles h3 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-track .dispatch-specimen-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-round);
}
.appily-fourteen.page-press-track .dispatch-specimen-tag-ok {
  background: rgba(123, 168, 137, 0.2);
  color: #2d5a3a;
  border: 1px solid rgba(123, 168, 137, 0.45);
}
.appily-fourteen.page-press-track .dispatch-specimen-tag-warn {
  background: rgba(212, 165, 116, 0.25);
  color: #7a4f1a;
  border: 1px solid rgba(212, 165, 116, 0.5);
}
.appily-fourteen.page-press-track .dispatch-specimen-status {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-round);
  background: var(--parchment);
  color: var(--wine);
  border: 2px solid var(--line);
  white-space: nowrap;
}
.appily-fourteen.page-press-track .dispatch-specimen-order {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.02em;
}
.appily-fourteen.page-press-track .dispatch-specimen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 28px;
}
.appily-fourteen.page-press-track .dispatch-specimen-stats div {
  padding: 14px 16px;
  background: var(--parchment);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.appily-fourteen.page-press-track .dispatch-specimen-stats dt {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.appily-fourteen.page-press-track .dispatch-specimen-stats dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--wine-deep);
}

.appily-fourteen.page-press-track .pollen-ladder {
  margin-bottom: 24px;
  padding: 20px 22px;
  background: linear-gradient(180deg, var(--parchment), var(--white));
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
}
.appily-fourteen.page-press-track .pollen-ladder-label {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-track .pollen-ladder-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.appily-fourteen.page-press-track .pollen-rung {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.appily-fourteen.page-press-track .pollen-rung-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.appily-fourteen.page-press-track .pollen-rung-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid var(--line);
  background: var(--white);
  position: relative;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.appily-fourteen.page-press-track .pollen-rung-stem {
  position: absolute;
  top: 11px;
  left: calc(50% + 11px);
  width: calc(100% + 12px);
  height: 3px;
  background: var(--line);
  z-index: 0;
}
.appily-fourteen.page-press-track .pollen-rung.is-done .pollen-rung-dot {
  background: var(--moss);
  border-color: var(--moss-deep);
}
.appily-fourteen.page-press-track .pollen-rung.is-done .pollen-rung-stem {
  background: var(--moss);
}
.appily-fourteen.page-press-track .pollen-rung.is-current .pollen-rung-dot {
  background: var(--wheat);
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.35);
}
.appily-fourteen.page-press-track .pollen-rung-phase {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
.appily-fourteen.page-press-track .pollen-rung-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.3;
}
.appily-fourteen.page-press-track .pollen-rung.is-current .pollen-rung-label {
  color: var(--wine);
}

.appily-fourteen.page-press-track .dispatch-specimen-miss {
  text-align: center;
  padding: 48px 28px;
}
.appily-fourteen.page-press-track .dispatch-specimen-miss h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  color: var(--wine-deep);
}
.appily-fourteen.page-press-track .dispatch-specimen-miss-note {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.appily-fourteen.page-press-track .pollen-reveal-idle {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
}
.appily-fourteen.page-press-track .pollen-reveal-idle-slip {
  display: inline-block;
  width: 64px;
  height: 80px;
  margin-bottom: 16px;
  background: var(--parchment);
  border: 2px solid var(--line);
  border-radius: 4px;
  position: relative;
}
.appily-fourteen.page-press-track .pollen-reveal-idle-slip::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 10px;
  right: 10px;
  height: 4px;
  background: var(--line);
  box-shadow: 0 10px 0 var(--line), 0 20px 0 var(--line);
}
.appily-fourteen.page-press-track .pollen-reveal-idle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .appily-fourteen.page-press-track .pollen-beacon-grid,
  .appily-fourteen.page-press-track .pollen-desk-grid {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-track .pollen-beacon-signal {
    max-width: 260px;
  }
  .appily-fourteen.page-press-track .atelier-index-rail {
    position: static;
  }
  .appily-fourteen.page-press-track .atelier-index-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .appily-fourteen.page-press-track .dispatch-specimen-head {
    grid-template-columns: auto 1fr;
  }
  .appily-fourteen.page-press-track .dispatch-specimen-status {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .appily-fourteen.page-press-track .pollen-ladder-steps {
    grid-template-columns: 1fr 1fr;
  }
  .appily-fourteen.page-press-track .pollen-rung-stem {
    display: none;
  }
}

@media (max-width: 640px) {
  .appily-fourteen.page-press-track .pollen-beacon {
    padding: 32px 0 28px;
  }
  .appily-fourteen.page-press-track .specimen-slip-head {
    grid-template-columns: auto 1fr;
  }
  .appily-fourteen.page-press-track .specimen-slip-no {
    grid-column: 1 / -1;
  }
  .appily-fourteen.page-press-track .dispatch-specimen-stats {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-track .pollen-ladder-steps {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-track .atelier-index-links {
    grid-template-columns: 1fr;
  }
}

/* ── Pollen Press account — member folio ── */
.appily-fourteen.page-press-account .folio-mast {
  position: relative;
  padding: 40px 0 32px;
  background: linear-gradient(150deg, var(--wine-deep), var(--wine) 55%, #351430);
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-account .folio-mast-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-account .folio-mast-watermark {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 700;
  opacity: 0.07;
  line-height: 1;
}
.appily-fourteen.page-press-account .folio-mast-ring {
  position: absolute;
  border: 1px solid rgba(248, 243, 234, 0.1);
  border-radius: 50%;
  left: 78%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.appily-fourteen.page-press-account .folio-mast-ring-1 { width: 240px; height: 240px; }
.appily-fourteen.page-press-account .folio-mast-ring-2 { width: 320px; height: 320px; opacity: 0.5; }
.appily-fourteen.page-press-account .folio-mast-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.appily-fourteen.page-press-account .folio-mast-vol {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 10px;
}
.appily-fourteen.page-press-account .folio-mast-inner h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
}
.appily-fourteen.page-press-account .folio-mast-inner h1 em {
  font-style: italic;
  color: var(--wheat);
}
.appily-fourteen.page-press-account .folio-mast-lede {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.82;
  max-width: 46ch;
  line-height: 1.55;
}
.appily-fourteen.page-press-account .folio-mast-ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--wheat) 0 10px, transparent 10px 18px);
  opacity: 0.4;
}

.appily-fourteen.page-press-account .folio-floor {
  padding: 36px 0 64px;
  background: var(--parchment);
}
.appily-fourteen.page-press-account .folio-loading {
  margin-bottom: 20px;
}

.appily-fourteen.page-press-account .folio-binder {
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  gap: 24px;
  align-items: start;
}
.appily-fourteen.page-press-account .binder-rings {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-account .binder-rings-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--line);
}
.appily-fourteen.page-press-account .binder-wax {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--wheat);
}
.appily-fourteen.page-press-account .binder-welcome {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.35;
}
.appily-fourteen.page-press-account .binder-ring-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.appily-fourteen.page-press-account .ring-tab {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 10px 8px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.appily-fourteen.page-press-account .ring-tab:hover {
  background: var(--parchment);
  transform: translateX(3px);
}
.appily-fourteen.page-press-account .ring-tab.is-active {
  background: var(--parchment);
  border-color: var(--wine);
  transform: translateX(5px);
}
.appily-fourteen.page-press-account .ring-hole {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--wine);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.appily-fourteen.page-press-account .ring-tab.is-active .ring-hole {
  background: var(--wheat);
}
.appily-fourteen.page-press-account .ring-tab-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.appily-fourteen.page-press-account .ring-tab-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wine);
  opacity: 0.7;
}
.appily-fourteen.page-press-account .ring-tab-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-account .binder-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.appily-fourteen.page-press-account .binder-signout {
  border: 2px solid var(--wine);
  color: var(--wine);
  background: transparent;
  font-weight: 700;
}
.appily-fourteen.page-press-account .binder-signout:hover {
  background: var(--wine);
  color: var(--parchment);
}

.appily-fourteen.page-press-account .folio-leaves {
  min-width: 0;
}
.appily-fourteen.page-press-account .folio-leaf {
  display: none;
  position: relative;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px 32px;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-account .folio-leaf.is-active {
  display: block;
}
.appily-fourteen.page-press-account .folio-leaf-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(225deg, var(--parchment) 50%, transparent 50%);
  border-left: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  border-radius: 0 var(--radius-lg) 0 0;
}
.appily-fourteen.page-press-account .folio-leaf-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
.appily-fourteen.page-press-account .folio-leaf-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-account .folio-leaf-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.appily-fourteen.page-press-account .folio-leaf-head-row .folio-leaf-title {
  margin-bottom: 0;
}

.appily-fourteen.page-press-account .profile-grid,
.appily-fourteen.page-press-account .specimen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.appily-fourteen.page-press-account .profile-item {
  padding: 14px 16px;
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.appily-fourteen.page-press-account .profile-item .k {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.appily-fourteen.page-press-account .profile-item .v {
  display: block;
  font-weight: 700;
  color: var(--wine-deep);
  font-size: 0.92rem;
  word-break: break-word;
}
.appily-fourteen.page-press-account .profile-item .v.mono {
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
}

.appily-fourteen.page-press-account .folio-orders .order-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: var(--parchment);
  transition: border-color 0.15s;
}
.appily-fourteen.page-press-account .folio-orders .order-row:hover {
  border-color: var(--wine);
}
.appily-fourteen.page-press-account .folio-orders .order-row strong {
  color: var(--wine-deep);
  font-size: 0.95rem;
}
.appily-fourteen.page-press-account .mini-copy {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}

.appily-fourteen.page-press-account .press-form {
  display: grid;
  gap: 16px;
}
.appily-fourteen.page-press-account .press-form-narrow {
  max-width: 420px;
}
.appily-fourteen.page-press-account .press-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-account .press-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: var(--parchment);
  transition: border-color 0.2s, background 0.2s;
}
.appily-fourteen.page-press-account .press-field input:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--white);
}

.appily-fourteen.page-press-account .margin-notes {
  position: sticky;
  top: 96px;
  padding: 18px 16px;
  border-left: 3px solid var(--wheat);
  background: rgba(255, 255, 255, 0.6);
}
.appily-fourteen.page-press-account .margin-notes-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--wine);
  transform: rotate(-2deg);
}
.appily-fourteen.page-press-account .margin-note {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  transition: transform 0.15s;
}
.appily-fourteen.page-press-account .margin-note:last-child {
  border-bottom: 0;
}
.appily-fourteen.page-press-account .margin-note:hover {
  transform: translateX(4px);
}
.appily-fourteen.page-press-account .margin-note-mark {
  font-weight: 700;
  color: var(--moss-deep);
  font-size: 0.9rem;
}
.appily-fourteen.page-press-account .margin-note-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
}
.appily-fourteen.page-press-account .margin-note-text strong {
  color: var(--wine-deep);
  font-weight: 700;
}
.appily-fourteen.page-press-account .margin-note-text span {
  color: var(--muted);
  font-size: 0.76rem;
}

.appily-fourteen.page-press-account .press-plate-gate {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.appily-fourteen.page-press-account .press-plate-switch {
  display: flex;
  border-bottom: 2px solid var(--line);
  background: var(--parchment);
}
.appily-fourteen.page-press-account .plate-toggle {
  flex: 1;
  padding: 14px 20px;
  border: 0;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid var(--line);
}
.appily-fourteen.page-press-account .plate-toggle:last-child {
  border-right: 0;
}
.appily-fourteen.page-press-account .plate-toggle.is-active {
  background: var(--wine);
  color: var(--parchment);
}
.appily-fourteen.page-press-account .press-plate-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 0;
}
.appily-fourteen.page-press-account .member-perks {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--wine-deep), var(--wine));
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-account .member-perks-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wheat);
}
.appily-fourteen.page-press-account .member-perks h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
}
.appily-fourteen.page-press-account .member-perks-list {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.9;
}
.appily-fourteen.page-press-account .member-perks-list li {
  margin-bottom: 8px;
}
.appily-fourteen.page-press-account .member-perks-seal {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--wheat);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.5;
}
.appily-fourteen.page-press-account .press-plate-deck {
  padding: 28px 32px 36px;
}
.appily-fourteen.page-press-account .plate-panel {
  display: none;
}
.appily-fourteen.page-press-account .plate-panel.is-active {
  display: block;
}
.appily-fourteen.page-press-account .plate-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
.appily-fourteen.page-press-account .plate-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-account .plate-lede {
  margin: 0 0 22px;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.55;
}
.appily-fourteen.page-press-account .plate-forgot {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px dashed var(--line);
}
.appily-fourteen.page-press-account .plate-subhead {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-account .plate-reset {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.appily-fourteen.page-press-account .notice {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
}
.appily-fourteen.page-press-account .notice.success {
  background: rgba(123, 168, 137, 0.2);
  color: #2d5a3a;
  border: 1px solid rgba(123, 168, 137, 0.4);
}
.appily-fourteen.page-press-account .notice.warning {
  background: rgba(212, 165, 116, 0.25);
  color: #7a4f1a;
  border: 1px solid rgba(212, 165, 116, 0.45);
}
.appily-fourteen.page-press-account .toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--wine-deep);
  color: var(--parchment);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 999;
  pointer-events: none;
}
.appily-fourteen.page-press-account .toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.appily-fourteen.page-press-account .toast.error {
  background: #8b3a52;
}
.appily-fourteen.page-press-account .toast.success {
  background: #3d6b4a;
}

@media (max-width: 980px) {
  .appily-fourteen.page-press-account .folio-binder {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-account .binder-rings,
  .appily-fourteen.page-press-account .margin-notes {
    position: static;
  }
  .appily-fourteen.page-press-account .binder-ring-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .appily-fourteen.page-press-account .ring-tab {
    flex: 1 1 140px;
  }
  .appily-fourteen.page-press-account .margin-notes {
    border-left: 0;
    border-top: 3px solid var(--wheat);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
  }
  .appily-fourteen.page-press-account .margin-notes-title {
    grid-column: 1 / -1;
    transform: none;
  }
  .appily-fourteen.page-press-account .press-plate-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .appily-fourteen.page-press-account .folio-mast {
    padding: 32px 0 28px;
  }
  .appily-fourteen.page-press-account .margin-notes {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-account .press-plate-deck {
    padding: 22px 18px 28px;
  }
  .appily-fourteen.page-press-account .profile-grid,
  .appily-fourteen.page-press-account .specimen-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Pollen Press cart — packet tray ── */
.appily-fourteen.page-press-cart .tray-mast {
  position: relative;
  padding: 40px 0 32px;
  background: linear-gradient(155deg, var(--wine-deep), var(--wine) 52%, #351430);
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-cart .tray-mast-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-cart .tray-mast-watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 700;
  opacity: 0.07;
  line-height: 1;
}
.appily-fourteen.page-press-cart .tray-mast-ring {
  position: absolute;
  border: 1px solid rgba(248, 243, 234, 0.1);
  border-radius: 50%;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.appily-fourteen.page-press-cart .tray-mast-ring-1 { width: 260px; height: 260px; }
.appily-fourteen.page-press-cart .tray-mast-ring-2 { width: 340px; height: 340px; opacity: 0.5; }
.appily-fourteen.page-press-cart .tray-mast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(160px, 200px);
  gap: 28px;
  align-items: center;
}
.appily-fourteen.page-press-cart .tray-mast-vol {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 10px;
}
.appily-fourteen.page-press-cart .tray-mast-copy h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
  max-width: 18ch;
}
.appily-fourteen.page-press-cart .tray-mast-copy h1 em {
  font-style: italic;
  color: var(--wheat);
}
.appily-fourteen.page-press-cart .tray-mast-lede {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.82;
  max-width: 48ch;
  line-height: 1.55;
}
.appily-fourteen.page-press-cart .tray-tally {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(248, 243, 234, 0.25);
  background: rgba(0, 0, 0, 0.15);
  text-align: center;
}
.appily-fourteen.page-press-cart .tray-tally-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--wheat);
}
.appily-fourteen.page-press-cart .tray-tally-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.appily-fourteen.page-press-cart .tray-tally-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(248, 243, 234, 0.3);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--parchment);
  width: 100%;
}
.appily-fourteen.page-press-cart .tray-mast-ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--wheat) 0 10px, transparent 10px 18px);
  opacity: 0.4;
}

.appily-fourteen.page-press-cart .tray-floor {
  padding: 36px 0 64px;
  background: var(--parchment);
}
.appily-fourteen.page-press-cart .tray-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
}
.appily-fourteen.page-press-cart .tray-empty-frame {
  position: relative;
  display: inline-flex;
  gap: 10px;
  padding: 24px 28px 32px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #e8dfd0, #d4c4ae);
  border: 3px solid #b8a88a;
  border-radius: var(--radius-md);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
}
.appily-fourteen.page-press-cart .tray-empty-slot {
  width: 48px;
  height: 64px;
  border: 2px dashed rgba(74, 25, 66, 0.25);
  border-radius: 4px;
  background: rgba(248, 243, 234, 0.5);
}
.appily-fourteen.page-press-cart .tray-empty-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.6;
}
.appily-fourteen.page-press-cart .tray-empty h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--wine-deep);
}
.appily-fourteen.page-press-cart .tray-empty p {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.appily-fourteen.page-press-cart .tray-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 320px);
  gap: 28px;
  align-items: start;
}
.appily-fourteen.page-press-cart .packet-tray-form {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-cart .packet-tray-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 22px;
  border-bottom: 2px dashed var(--line);
  background: linear-gradient(180deg, var(--parchment), var(--white));
}
.appily-fourteen.page-press-cart .packet-tray-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-cart .packet-tray-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.appily-fourteen.page-press-cart .tray-slots {
  list-style: none;
  margin: 0;
  padding: 0;
}
.appily-fourteen.page-press-cart .tray-slot {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(212, 165, 116, 0.12) 44px, transparent 44px);
}
.appily-fourteen.page-press-cart .tray-slot:last-child {
  border-bottom: 0;
}
.appily-fourteen.page-press-cart .tray-slot-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wine);
  opacity: 0.55;
  border-right: 1px dashed var(--line);
}
.appily-fourteen.page-press-cart .tray-packet {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px 12px;
  position: relative;
}
.appily-fourteen.page-press-cart .tray-packet-tear {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--parchment);
  clip-path: polygon(
    0% 100%, 3% 0%, 6% 100%, 9% 0%, 12% 100%, 15% 0%, 18% 100%, 21% 0%, 24% 100%, 27% 0%, 30% 100%,
    33% 0%, 36% 100%, 39% 0%, 42% 100%, 45% 0%, 48% 100%, 51% 0%, 54% 100%, 57% 0%, 60% 100%, 63% 0%,
    66% 100%, 69% 0%, 72% 100%, 75% 0%, 78% 100%, 81% 0%, 84% 100%, 87% 0%, 90% 100%, 93% 0%, 96% 100%, 100% 0%, 100% 100%
  );
  opacity: 0.7;
}
.appily-fourteen.page-press-cart .tray-packet-img {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--line);
  margin-top: 4px;
  transition: border-color 0.2s, transform 0.2s;
}
.appily-fourteen.page-press-cart .tray-packet-img:hover {
  border-color: var(--wine);
  transform: scale(1.05);
}
.appily-fourteen.page-press-cart .tray-packet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appily-fourteen.page-press-cart .tray-packet-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--parchment);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--wine);
}
.appily-fourteen.page-press-cart .tray-packet-body h2 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}
.appily-fourteen.page-press-cart .tray-packet-body h2 a {
  color: var(--wine-deep);
}
.appily-fourteen.page-press-cart .tray-packet-body h2 a:hover {
  color: var(--moss-deep);
}
.appily-fourteen.page-press-cart .tray-packet-sku {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss-deep);
  margin-bottom: 4px;
}
.appily-fourteen.page-press-cart .tray-packet-variant {
  margin: 0 0 4px;
  font-size: 0.78rem;
  color: var(--muted);
}
.appily-fourteen.page-press-cart .tray-packet-unit {
  font-size: 0.82rem;
  color: var(--muted);
}
.appily-fourteen.page-press-cart .tray-packet-qty label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-cart .tray-packet-qty input {
  width: 72px;
  padding: 8px 10px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  text-align: center;
  background: var(--parchment);
}
.appily-fourteen.page-press-cart .tray-packet-qty input:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--white);
}
.appily-fourteen.page-press-cart .tray-packet-line {
  text-align: right;
  min-width: 80px;
}
.appily-fourteen.page-press-cart .tray-line-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.appily-fourteen.page-press-cart .tray-packet-line strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--wine);
}

.appily-fourteen.page-press-cart .tray-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 22px;
  border-top: 2px dashed var(--line);
  background: var(--parchment);
}
.appily-fourteen.page-press-cart .btn-ghost {
  border: 2px solid var(--wine);
  color: var(--wine);
  background: transparent;
  font-weight: 700;
}
.appily-fourteen.page-press-cart .btn-ghost:hover {
  background: var(--wine);
  color: var(--parchment);
}

.appily-fourteen.page-press-cart .dispatch-slip {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 2px solid var(--wine);
  border-radius: var(--radius-lg);
  padding: 24px 22px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}
.appily-fourteen.page-press-cart .dispatch-slip-tear {
  height: 8px;
  background: var(--parchment);
  clip-path: polygon(
    0% 100%, 4% 0%, 8% 100%, 12% 0%, 16% 100%, 20% 0%, 24% 100%, 28% 0%, 32% 100%, 36% 0%, 40% 100%,
    44% 0%, 48% 100%, 52% 0%, 56% 100%, 60% 0%, 64% 100%, 68% 0%, 72% 100%, 76% 0%, 80% 100%, 84% 0%,
    88% 100%, 92% 0%, 96% 100%, 100% 0%, 100% 100%
  );
}
.appily-fourteen.page-press-cart .dispatch-slip-tear-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.appily-fourteen.page-press-cart .dispatch-slip-tear-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(180deg);
}
.appily-fourteen.page-press-cart .dispatch-slip-wax {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--wheat);
  margin-bottom: 12px;
}
.appily-fourteen.page-press-cart .dispatch-slip-store {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-cart .dispatch-slip-title {
  margin: 4px 0 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-cart .dispatch-slip-date {
  margin: 0 0 18px;
  font-size: 0.78rem;
  color: var(--muted);
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--line);
}
.appily-fourteen.page-press-cart .dispatch-slip-rows {
  margin: 0 0 16px;
  text-align: left;
}
.appily-fourteen.page-press-cart .dispatch-slip-rows div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.appily-fourteen.page-press-cart .dispatch-slip-rows dt {
  color: var(--muted);
  font-weight: 600;
}
.appily-fourteen.page-press-cart .dispatch-slip-rows dd {
  margin: 0;
  font-weight: 700;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-cart .dispatch-slip-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: var(--parchment);
  border-radius: var(--radius-md);
  border: 2px solid var(--wine);
  font-weight: 700;
}
.appily-fourteen.page-press-cart .dispatch-slip-total strong {
  font-size: 1.25rem;
  color: var(--wine);
}
.appily-fourteen.page-press-cart .dispatch-slip-notes {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}
.appily-fourteen.page-press-cart .dispatch-slip-notes li {
  padding: 4px 0 4px 14px;
  position: relative;
}
.appily-fourteen.page-press-cart .dispatch-slip-notes li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--moss-deep);
  font-weight: 700;
}
.appily-fourteen.page-press-cart .dispatch-slip-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.appily-fourteen.page-press-cart .btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 980px) {
  .appily-fourteen.page-press-cart .tray-mast-grid {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-cart .tray-tally {
    max-width: 200px;
  }
  .appily-fourteen.page-press-cart .tray-layout {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-cart .dispatch-slip {
    position: static;
  }
  .appily-fourteen.page-press-cart .tray-packet {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
  }
  .appily-fourteen.page-press-cart .tray-packet-qty,
  .appily-fourteen.page-press-cart .tray-packet-line {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .appily-fourteen.page-press-cart .tray-mast {
    padding: 32px 0 28px;
  }
  .appily-fourteen.page-press-cart .tray-mast-copy h1 {
    max-width: none;
  }
  .appily-fourteen.page-press-cart .tray-slot {
    grid-template-columns: 36px 1fr;
    background: none;
  }
  .appily-fourteen.page-press-cart .tray-packet {
    grid-template-columns: 64px 1fr;
    padding: 14px 14px 12px;
    gap: 12px;
  }
  .appily-fourteen.page-press-cart .tray-packet-qty,
  .appily-fourteen.page-press-cart .tray-packet-line {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ── Pollen Press orders — dispatch chronicle ── */
.appily-fourteen.page-press-orders .chronicle-mast {
  position: relative;
  padding: 40px 0 32px;
  background: linear-gradient(155deg, var(--wine-deep), var(--wine) 52%, #351430);
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-orders .chronicle-mast-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-orders .chronicle-mast-watermark {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 700;
  opacity: 0.07;
  line-height: 1;
}
.appily-fourteen.page-press-orders .chronicle-mast-ring {
  position: absolute;
  border: 1px solid rgba(248, 243, 234, 0.1);
  border-radius: 50%;
  left: 76%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.appily-fourteen.page-press-orders .chronicle-mast-ring-1 { width: 250px; height: 250px; }
.appily-fourteen.page-press-orders .chronicle-mast-ring-2 { width: 330px; height: 330px; opacity: 0.5; }
.appily-fourteen.page-press-orders .chronicle-mast-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.appily-fourteen.page-press-orders .chronicle-mast-vol {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 10px;
}
.appily-fourteen.page-press-orders .chronicle-mast-inner h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
}
.appily-fourteen.page-press-orders .chronicle-mast-inner h1 em {
  font-style: italic;
  color: var(--wheat);
}
.appily-fourteen.page-press-orders .chronicle-mast-lede {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.82;
  max-width: 48ch;
  line-height: 1.55;
}
.appily-fourteen.page-press-orders .chronicle-mast-ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--wheat) 0 10px, transparent 10px 18px);
  opacity: 0.4;
}

.appily-fourteen.page-press-orders .chronicle-floor {
  padding: 36px 0 64px;
  background: var(--parchment);
}
.appily-fourteen.page-press-orders .chronicle-loading {
  margin-bottom: 20px;
}

.appily-fourteen.page-press-orders .vault-gate {
  position: relative;
  text-align: center;
  padding: 56px 28px;
  background: var(--white);
  border: 2px solid var(--wine);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
}
.appily-fourteen.page-press-orders .vault-gate-wax {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: 3px solid var(--wheat);
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.appily-fourteen.page-press-orders .vault-gate-chain {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 48px;
  background: linear-gradient(180deg, var(--wine), transparent);
  opacity: 0.35;
}
.appily-fourteen.page-press-orders .vault-gate h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--wine-deep);
}
.appily-fourteen.page-press-orders .vault-gate p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.appily-fourteen.page-press-orders .vault-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.appily-fourteen.page-press-orders .chronicle-bound {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-orders .chronicle-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  background: linear-gradient(180deg, var(--wine-deep), var(--wine));
  color: var(--parchment);
}
.appily-fourteen.page-press-orders .spine-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.appily-fourteen.page-press-orders .spine-ring {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid rgba(248, 243, 234, 0.5);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.appily-fourteen.page-press-orders .chronicle-pages {
  padding: 24px 28px 32px;
  min-width: 0;
}
.appily-fourteen.page-press-orders .chronicle-live-label {
  margin: 0 0 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}

.appily-fourteen.page-press-orders .chronicle-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.appily-fourteen.page-press-orders .chronicle-leaf {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 20px 22px 20px 12px;
  background: var(--parchment);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  transform: rotate(var(--leaf-tilt, 0deg));
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.appily-fourteen.page-press-orders .chronicle-leaf:hover {
  transform: rotate(0deg) translateY(-3px);
  border-color: var(--wine);
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-orders .leaf-holes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}
.appily-fourteen.page-press-orders .leaf-holes span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--wine);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.appily-fourteen.page-press-orders .leaf-edition {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.appily-fourteen.page-press-orders .leaf-wax {
  position: absolute;
  top: 14px;
  left: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 2px solid;
  transform: rotate(-12deg);
}
.appily-fourteen.page-press-orders .leaf-wax.pollen-placed {
  background: rgba(212, 165, 116, 0.25);
  color: #7a4f1a;
  border-color: rgba(212, 165, 116, 0.6);
}
.appily-fourteen.page-press-orders .leaf-wax.pollen-packed {
  background: rgba(123, 168, 137, 0.2);
  color: #2d5a3a;
  border-color: rgba(123, 168, 137, 0.5);
}
.appily-fourteen.page-press-orders .leaf-wax.pollen-shipped {
  background: rgba(74, 25, 66, 0.12);
  color: var(--wine);
  border-color: rgba(74, 25, 66, 0.35);
}
.appily-fourteen.page-press-orders .leaf-wax.pollen-delivered {
  background: var(--moss);
  color: var(--parchment);
  border-color: var(--moss-deep);
}
.appily-fourteen.page-press-orders .leaf-wax.pollen-cancelled {
  background: rgba(196, 92, 122, 0.2);
  color: #8b3a52;
  border-color: rgba(196, 92, 122, 0.45);
}

.appily-fourteen.page-press-orders .chronicle-leaf > :not(.leaf-holes):not(.leaf-edition):not(.leaf-wax):not(.leaf-crease) {
  grid-column: 2;
}
.appily-fourteen.page-press-orders .leaf-head {
  padding-top: 36px;
}
.appily-fourteen.page-press-orders .leaf-ref strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wine-deep);
  word-break: break-all;
}
.appily-fourteen.page-press-orders .leaf-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.appily-fourteen.page-press-orders .leaf-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin: 12px 0;
  font-size: 0.84rem;
}
.appily-fourteen.page-press-orders .leaf-meta > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.appily-fourteen.page-press-orders .leaf-items {
  margin: 0 0 14px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 3px solid var(--wheat);
}
.appily-fourteen.page-press-orders .leaf-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding-top: 14px;
  border-top: 2px dashed var(--line);
}
.appily-fourteen.page-press-orders .leaf-total strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--wine);
}
.appily-fourteen.page-press-orders .leaf-status-text {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-round);
  margin-left: auto;
}
.appily-fourteen.page-press-orders .leaf-status-text.pollen-placed {
  background: rgba(212, 165, 116, 0.2);
  color: #7a4f1a;
}
.appily-fourteen.page-press-orders .leaf-status-text.pollen-packed {
  background: rgba(123, 168, 137, 0.2);
  color: #2d5a3a;
}
.appily-fourteen.page-press-orders .leaf-status-text.pollen-shipped {
  background: rgba(74, 25, 66, 0.1);
  color: var(--wine);
}
.appily-fourteen.page-press-orders .leaf-status-text.pollen-delivered {
  background: var(--moss);
  color: var(--parchment);
}
.appily-fourteen.page-press-orders .leaf-status-text.pollen-cancelled {
  background: rgba(196, 92, 122, 0.15);
  color: #8b3a52;
}
.appily-fourteen.page-press-orders .chronicle-track-btn {
  font-weight: 700;
}
.appily-fourteen.page-press-orders .leaf-crease {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(315deg, transparent 50%, rgba(74, 25, 66, 0.06) 50%);
  pointer-events: none;
}

.appily-fourteen.page-press-orders .chronicle-leaf.tone-meadow { border-left: 4px solid var(--moss); }
.appily-fourteen.page-press-orders .chronicle-leaf.tone-heritage { border-left: 4px solid #8b6f4e; }
.appily-fourteen.page-press-orders .chronicle-leaf.tone-cut { border-left: 4px solid #c45c7a; }
.appily-fourteen.page-press-orders .chronicle-leaf.tone-trellis { border-left: 4px solid #5a8f6a; }
.appily-fourteen.page-press-orders .chronicle-leaf.tone-scent { border-left: 4px solid #b8860b; }

.appily-fourteen.page-press-orders .chronicle-empty {
  text-align: center;
  padding: 48px 24px;
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--parchment);
}
.appily-fourteen.page-press-orders .chronicle-empty-leaves {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
}
.appily-fourteen.page-press-orders .chronicle-empty-leaves span {
  width: 40px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 2px;
  transform: rotate(-3deg);
}
.appily-fourteen.page-press-orders .chronicle-empty-leaves span:nth-child(2) {
  transform: rotate(2deg);
  margin-top: -6px;
}
.appily-fourteen.page-press-orders .chronicle-empty-leaves span:nth-child(3) {
  transform: rotate(-1deg);
}
.appily-fourteen.page-press-orders .chronicle-empty h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--wine-deep);
}
.appily-fourteen.page-press-orders .chronicle-empty p {
  margin: 0 0 20px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .appily-fourteen.page-press-orders .chronicle-bound {
    grid-template-columns: 32px 1fr;
  }
  .appily-fourteen.page-press-orders .chronicle-pages {
    padding: 18px 16px 24px;
  }
  .appily-fourteen.page-press-orders .chronicle-leaf {
    grid-template-columns: 22px 1fr;
    padding: 16px 14px 16px 10px;
  }
  .appily-fourteen.page-press-orders .leaf-wax {
    left: 36px;
    width: 38px;
    height: 38px;
    font-size: 0.52rem;
  }
  .appily-fourteen.page-press-orders .leaf-head {
    padding-top: 32px;
  }
  .appily-fourteen.page-press-orders .leaf-foot {
    flex-direction: column;
    align-items: stretch;
  }
  .appily-fourteen.page-press-orders .leaf-status-text {
    margin-left: 0;
    align-self: flex-start;
  }
}

/* ── Pollen Press checkout — atelier clearance ── */
.appily-fourteen.page-press-checkout .clearance-mast {
  position: relative;
  padding: 40px 0 32px;
  background: linear-gradient(155deg, var(--wine-deep), var(--wine) 52%, #351430);
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-checkout .clearance-mast-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-checkout .clearance-mast-watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 700;
  opacity: 0.07;
  line-height: 1;
}
.appily-fourteen.page-press-checkout .clearance-mast-ring {
  position: absolute;
  border: 1px solid rgba(248, 243, 234, 0.1);
  border-radius: 50%;
  left: 74%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.appily-fourteen.page-press-checkout .clearance-mast-ring-1 { width: 260px; height: 260px; }
.appily-fourteen.page-press-checkout .clearance-mast-ring-2 { width: 340px; height: 340px; opacity: 0.5; }
.appily-fourteen.page-press-checkout .clearance-mast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(180px, 220px);
  gap: 28px;
  align-items: center;
}
.appily-fourteen.page-press-checkout .clearance-mast-vol {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 10px;
}
.appily-fourteen.page-press-checkout .clearance-mast-copy h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
  max-width: 20ch;
}
.appily-fourteen.page-press-checkout .clearance-mast-copy h1 em {
  font-style: italic;
  color: var(--wheat);
}
.appily-fourteen.page-press-checkout .clearance-mast-lede {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.82;
  max-width: 48ch;
  line-height: 1.55;
}
.appily-fourteen.page-press-checkout .clearance-pass {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(248, 243, 234, 0.25);
  background: rgba(0, 0, 0, 0.15);
  text-align: center;
}
.appily-fourteen.page-press-checkout .clearance-pass-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
.appily-fourteen.page-press-checkout .clearance-pass-code {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wheat);
}
.appily-fourteen.page-press-checkout .clearance-pass-qty {
  font-size: 0.82rem;
  opacity: 0.85;
}
.appily-fourteen.page-press-checkout .clearance-pass-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(248, 243, 234, 0.3);
  font-size: 1.15rem;
  font-weight: 800;
  width: 100%;
}
.appily-fourteen.page-press-checkout .clearance-mast-ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--wheat) 0 10px, transparent 10px 18px);
  opacity: 0.4;
}

.appily-fourteen.page-press-checkout .clearance-floor {
  padding: 32px 0 64px;
  background: var(--parchment);
}

.appily-fourteen.page-press-checkout .impression-trail {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 4px;
}
.appily-fourteen.page-press-checkout .impression-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.appily-fourteen.page-press-checkout .impression-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--wine);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--wine);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}
.appily-fourteen.page-press-checkout .impression-step.is-active .impression-mark {
  background: var(--wine);
  color: var(--wheat);
  box-shadow: 0 4px 12px rgba(74, 25, 66, 0.25);
}
.appily-fourteen.page-press-checkout .impression-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-checkout .impression-leader {
  width: 48px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--wine) 0 6px, transparent 6px 12px);
  opacity: 0.35;
  margin-bottom: 22px;
}

.appily-fourteen.page-press-checkout .clearance-layout {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 340px);
  gap: 28px;
  align-items: start;
}
.appily-fourteen.page-press-checkout .clearance-desk {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px 32px;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-checkout .clearance-desk-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--line);
}
.appily-fourteen.page-press-checkout .clearance-desk-wax {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--wheat);
}
.appily-fourteen.page-press-checkout .clearance-desk-code {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
.appily-fourteen.page-press-checkout .clearance-desk-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-checkout .clearance-error {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(196, 92, 122, 0.12);
  color: #8b3a52;
  border: 1px solid rgba(196, 92, 122, 0.35);
  font-size: 0.88rem;
  font-weight: 600;
}

.appily-fourteen.page-press-checkout .clearance-band {
  border: 0;
  margin: 0 0 8px;
  padding: 0;
}
.appily-fourteen.page-press-checkout .clearance-band legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-checkout .band-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--wheat);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.appily-fourteen.page-press-checkout .clearance-rule {
  height: 2px;
  margin: 20px 0;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.appily-fourteen.page-press-checkout .clearance-fields {
  display: grid;
  gap: 16px;
}
.appily-fourteen.page-press-checkout .clearance-fields-duo {
  grid-template-columns: 1fr 1fr;
}
.appily-fourteen.page-press-checkout .clearance-fields-route {
  grid-template-columns: 1fr 1fr;
}
.appily-fourteen.page-press-checkout .clearance-field-wide {
  grid-column: 1 / -1;
}
.appily-fourteen.page-press-checkout .clearance-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-checkout .clearance-field input,
.appily-fourteen.page-press-checkout .clearance-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--parchment);
  transition: border-color 0.2s, background 0.2s;
}
.appily-fourteen.page-press-checkout .clearance-field input:focus,
.appily-fourteen.page-press-checkout .clearance-field textarea:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--white);
}
.appily-fourteen.page-press-checkout .clearance-field input[readonly] {
  opacity: 0.85;
  cursor: default;
}
.appily-fourteen.page-press-checkout .clearance-hint {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  color: var(--muted);
}

.appily-fourteen.page-press-checkout .clearance-pay-single {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  background: var(--parchment);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-checkout .press-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.appily-fourteen.page-press-checkout .press-block-option {
  cursor: pointer;
}
.appily-fourteen.page-press-checkout .press-block-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-checkout .press-block-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--parchment);
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.appily-fourteen.page-press-checkout .press-block-option input:checked + .press-block-body {
  border-color: var(--wine);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.appily-fourteen.page-press-checkout .press-block {
  width: 40px;
  height: 28px;
  background: var(--wine);
  border-radius: 3px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.appily-fourteen.page-press-checkout .press-block-set {
  flex-shrink: 0;
}
.appily-fourteen.page-press-checkout .press-block-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.3;
}

.appily-fourteen.page-press-checkout .clearance-foot {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 2px dashed var(--line);
}
.appily-fourteen.page-press-checkout .clearance-policy {
  margin: 0 0 18px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.appily-fourteen.page-press-checkout .clearance-policy a {
  color: var(--wine);
  font-weight: 600;
}
.appily-fourteen.page-press-checkout .clearance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.appily-fourteen.page-press-checkout .clearance-seal-btn {
  font-weight: 700;
}

.appily-fourteen.page-press-checkout .packet-manifest {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 2px solid var(--wine);
  border-radius: var(--radius-lg);
  padding: 24px 20px 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.appily-fourteen.page-press-checkout .packet-manifest-tear {
  height: 8px;
  background: var(--parchment);
  clip-path: polygon(
    0% 100%, 4% 0%, 8% 100%, 12% 0%, 16% 100%, 20% 0%, 24% 100%, 28% 0%, 32% 100%, 36% 0%, 40% 100%,
    44% 0%, 48% 100%, 52% 0%, 56% 100%, 60% 0%, 64% 100%, 68% 0%, 72% 100%, 76% 0%, 80% 100%, 84% 0%,
    88% 100%, 92% 0%, 96% 100%, 100% 0%, 100% 100%
  );
}
.appily-fourteen.page-press-checkout .packet-manifest-tear-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.appily-fourteen.page-press-checkout .packet-manifest-tear-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(180deg);
}
.appily-fourteen.page-press-checkout .packet-manifest-wax {
  display: block;
  width: 44px;
  height: 44px;
  margin: 8px auto 12px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 44px;
  text-align: center;
  border: 2px solid var(--wheat);
}
.appily-fourteen.page-press-checkout .packet-manifest-head {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--line);
}
.appily-fourteen.page-press-checkout .packet-manifest-brand {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-checkout .packet-manifest-head h2 {
  margin: 6px 0 4px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-checkout .packet-manifest-head p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.appily-fourteen.page-press-checkout .packet-manifest-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}
.appily-fourteen.page-press-checkout .packet-manifest-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.appily-fourteen.page-press-checkout .packet-manifest-row:last-child {
  border-bottom: 0;
}
.appily-fourteen.page-press-checkout .packet-manifest-tear-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--parchment);
  clip-path: polygon(0% 100%, 5% 0%, 10% 100%, 15% 0%, 20% 100%, 25% 0%, 30% 100%, 35% 0%, 40% 100%, 45% 0%, 50% 100%, 55% 0%, 60% 100%, 65% 0%, 70% 100%, 75% 0%, 80% 100%, 85% 0%, 90% 100%, 95% 0%, 100% 100%);
  opacity: 0.6;
}
.appily-fourteen.page-press-checkout .packet-manifest-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line);
  margin-top: 4px;
}
.appily-fourteen.page-press-checkout .packet-manifest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appily-fourteen.page-press-checkout .packet-manifest-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--parchment);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--wine);
}
.appily-fourteen.page-press-checkout .packet-manifest-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.appily-fourteen.page-press-checkout .packet-manifest-info strong {
  font-size: 0.82rem;
  color: var(--wine-deep);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.appily-fourteen.page-press-checkout .packet-manifest-info span {
  font-size: 0.76rem;
  color: var(--muted);
}
.appily-fourteen.page-press-checkout .packet-manifest-price {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--wine);
  white-space: nowrap;
}

.appily-fourteen.page-press-checkout .packet-manifest-totals {
  margin: 0 0 14px;
}
.appily-fourteen.page-press-checkout .packet-manifest-totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.appily-fourteen.page-press-checkout .packet-manifest-totals dt {
  color: var(--muted);
  font-weight: 600;
}
.appily-fourteen.page-press-checkout .packet-manifest-totals dd {
  margin: 0;
  font-weight: 700;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-checkout .packet-manifest-grand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: var(--parchment);
  border: 2px solid var(--wine);
  border-radius: var(--radius-md);
  font-weight: 700;
}
.appily-fourteen.page-press-checkout .packet-manifest-grand strong {
  font-size: 1.2rem;
  color: var(--wine);
}
.appily-fourteen.page-press-checkout .packet-manifest-notes {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
}
.appily-fourteen.page-press-checkout .packet-manifest-notes li {
  padding: 3px 0 3px 12px;
  position: relative;
}
.appily-fourteen.page-press-checkout .packet-manifest-notes li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--moss-deep);
  font-weight: 700;
}
.appily-fourteen.page-press-checkout .packet-manifest-stamp {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--moss-deep);
  padding: 8px;
  border: 2px dashed var(--moss);
  border-radius: var(--radius-md);
  transform: rotate(-2deg);
  opacity: 0.85;
}

@media (max-width: 980px) {
  .appily-fourteen.page-press-checkout .clearance-mast-grid {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-checkout .clearance-pass {
    max-width: 220px;
  }
  .appily-fourteen.page-press-checkout .clearance-layout {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-checkout .packet-manifest {
    position: static;
  }
  .appily-fourteen.page-press-checkout .clearance-fields-duo,
  .appily-fourteen.page-press-checkout .clearance-fields-route {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .appily-fourteen.page-press-checkout .clearance-mast {
    padding: 32px 0 28px;
  }
  .appily-fourteen.page-press-checkout .clearance-mast-copy h1 {
    max-width: none;
  }
  .appily-fourteen.page-press-checkout .clearance-desk {
    padding: 20px 16px 24px;
  }
  .appily-fourteen.page-press-checkout .impression-leader {
    display: none;
  }
  .appily-fourteen.page-press-checkout .clearance-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .appily-fourteen.page-press-checkout .clearance-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Pollen Press product — specimen sheet ── */
.appily-fourteen.page-press-product .specimen-mast {
  position: relative;
  padding: 28px 0 24px;
  background: linear-gradient(155deg, var(--wine-deep), var(--wine) 60%, #351430);
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-product .specimen-mast-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-product .specimen-mast-watermark {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  opacity: 0.06;
  line-height: 1;
}
.appily-fourteen.page-press-product .specimen-mast-inner {
  position: relative;
  z-index: 1;
}
.appily-fourteen.page-press-product .specimen-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.82rem;
}
.appily-fourteen.page-press-product .specimen-crumb a {
  color: var(--wheat);
  font-weight: 600;
  opacity: 0.9;
}
.appily-fourteen.page-press-product .specimen-crumb a:hover {
  opacity: 1;
  color: var(--parchment);
}
.appily-fourteen.page-press-product .specimen-crumb-dot {
  opacity: 0.5;
}
.appily-fourteen.page-press-product .specimen-crumb-current {
  opacity: 0.75;
  max-width: 32ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.appily-fourteen.page-press-product .specimen-mast-vol {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
}
.appily-fourteen.page-press-product .specimen-mast-ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--wheat) 0 10px, transparent 10px 18px);
  opacity: 0.4;
}

.appily-fourteen.page-press-product-lost .specimen-miss {
  padding: 64px 0;
  background: var(--parchment);
  text-align: center;
}
.appily-fourteen.page-press-product-lost .specimen-miss-plate {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 3px dashed var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.appily-fourteen.page-press-product-lost .miss-ring {
  position: absolute;
  inset: 10px;
  border: 2px solid var(--line);
  border-radius: 50%;
  opacity: 0.4;
}
.appily-fourteen.page-press-product-lost .miss-stamp {
  font-size: 1.8rem;
  color: var(--muted);
}
.appily-fourteen.page-press-product-lost .specimen-miss-wrap h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--wine-deep);
}
.appily-fourteen.page-press-product-lost .specimen-miss-wrap p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.appily-fourteen.page-press-product .specimen-stage {
  padding: 36px 0 56px;
  background: var(--parchment);
}
.appily-fourteen.page-press-product .specimen-stage-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.appily-fourteen.page-press-product .specimen-press-mount {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 28px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.appily-fourteen.page-press-product .press-mount-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.appily-fourteen.page-press-product .mount-ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.5;
}
.appily-fourteen.page-press-product .mount-ring-1 { width: 200px; height: 200px; }
.appily-fourteen.page-press-product .mount-ring-2 { width: 260px; height: 260px; opacity: 0.35; }
.appily-fourteen.page-press-product .mount-ring-3 { width: 320px; height: 320px; opacity: 0.2; }
.appily-fourteen.page-press-product .press-mount-core {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  margin: 20px 0 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--wine);
  box-shadow: 0 8px 32px rgba(74, 25, 66, 0.2), inset 0 0 0 3px var(--white);
}
.appily-fourteen.page-press-product .press-mount-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appily-fourteen.page-press-product .press-mount-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-round);
  background: var(--wheat);
  color: var(--wine-deep);
}
.appily-fourteen.page-press-product .press-mount-plate {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
}
.appily-fourteen.page-press-product .mount-lot {
  color: var(--wine);
  padding: 4px 12px;
  background: var(--parchment);
  border-radius: var(--radius-round);
  border: 1px solid var(--line);
}
.appily-fourteen.page-press-product .mount-index {
  color: var(--muted);
  font-family: var(--font-display);
}
.appily-fourteen.page-press-product .press-mount-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  width: 100%;
  max-width: 240px;
}
.appily-fourteen.page-press-product .press-mount-notes li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.appily-fourteen.page-press-product .mount-note-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
  flex-shrink: 0;
}
.appily-fourteen.page-press-product .specimen-press-mount.tone-meadow .press-mount-core { border-color: var(--moss); }
.appily-fourteen.page-press-product .specimen-press-mount.tone-heritage .press-mount-core { border-color: #8b6f4e; }
.appily-fourteen.page-press-product .specimen-press-mount.tone-cut .press-mount-core { border-color: #c45c7a; }
.appily-fourteen.page-press-product .specimen-press-mount.tone-trellis .press-mount-core { border-color: #5a8f6a; }
.appily-fourteen.page-press-product .specimen-press-mount.tone-scent .press-mount-core { border-color: #b8860b; }

.appily-fourteen.page-press-product .specimen-sheet {
  position: relative;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-product .specimen-sheet-tear {
  height: 8px;
  background: var(--parchment);
  clip-path: polygon(
    0% 100%, 3% 0%, 6% 100%, 9% 0%, 12% 100%, 15% 0%, 18% 100%, 21% 0%, 24% 100%, 27% 0%, 30% 100%,
    33% 0%, 36% 100%, 39% 0%, 42% 100%, 45% 0%, 48% 100%, 51% 0%, 54% 100%, 57% 0%, 60% 100%, 63% 0%,
    66% 100%, 69% 0%, 72% 100%, 75% 0%, 78% 100%, 81% 0%, 84% 100%, 87% 0%, 90% 100%, 93% 0%, 96% 100%, 100% 0%, 100% 100%
  );
}
.appily-fourteen.page-press-product .specimen-sheet-tear-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.appily-fourteen.page-press-product .specimen-sheet-tear-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(180deg);
}
.appily-fourteen.page-press-product .specimen-sheet-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px dashed var(--wine);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wine);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 12px;
}
.appily-fourteen.page-press-product .specimen-sheet-line {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
.appily-fourteen.page-press-product .specimen-sheet h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-product .specimen-sheet-variant {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
}
.appily-fourteen.page-press-product .specimen-sheet-desc {
  margin: 0 0 20px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--wine-deep);
  opacity: 0.85;
}
.appily-fourteen.page-press-product .specimen-sheet-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 24px;
}
.appily-fourteen.page-press-product .specimen-sheet-meta div {
  padding: 12px 14px;
  background: var(--parchment);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.appily-fourteen.page-press-product .specimen-sheet-meta dt {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.appily-fourteen.page-press-product .specimen-sheet-meta dd {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-product .specimen-sheet.tone-meadow { border-left: 4px solid var(--moss); }
.appily-fourteen.page-press-product .specimen-sheet.tone-heritage { border-left: 4px solid #8b6f4e; }
.appily-fourteen.page-press-product .specimen-sheet.tone-cut { border-left: 4px solid #c45c7a; }
.appily-fourteen.page-press-product .specimen-sheet.tone-trellis { border-left: 4px solid #5a8f6a; }
.appily-fourteen.page-press-product .specimen-sheet.tone-scent { border-left: 4px solid #b8860b; }

.appily-fourteen.page-press-product .tray-press-station {
  padding: 20px 18px;
  background: linear-gradient(180deg, var(--parchment), var(--white));
  border: 2px solid var(--wine);
  border-radius: var(--radius-lg);
}
.appily-fourteen.page-press-product .tray-press-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.appily-fourteen.page-press-product .tray-press-wax {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 44px;
  text-align: center;
  border: 2px solid var(--wheat);
  flex-shrink: 0;
}
.appily-fourteen.page-press-product .tray-press-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-product .tray-press-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.1;
}
.appily-fourteen.page-press-product .tray-press-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}
.appily-fourteen.page-press-product .tray-qty-label {
  display: block;
  width: 100%;
  margin-bottom: -4px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-product .tray-qty {
  padding: 11px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: var(--white);
  min-width: 80px;
}
.appily-fourteen.page-press-product .tray-add-btn {
  flex: 1;
  min-width: 160px;
  font-weight: 700;
}
.appily-fourteen.page-press-product .tray-press-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.appily-fourteen.page-press-product .specimen-vault {
  padding: 0 0 64px;
  background: linear-gradient(180deg, var(--parchment), var(--white));
}
.appily-fourteen.page-press-product .specimen-vault-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 20px;
}
.appily-fourteen.page-press-product .vault-head-label {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-product .specimen-vault-head h2 {
  margin: 0;
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-product .specimen-vault-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.appily-fourteen.page-press-product .vault-packet {
  flex: 0 0 170px;
  scroll-snap-align: start;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  display: block;
}
.appily-fourteen.page-press-product .vault-packet:hover {
  transform: translateY(-6px);
  border-color: var(--wine);
}
.appily-fourteen.page-press-product .vault-packet-tear {
  height: 8px;
  background: var(--parchment);
  clip-path: polygon(
    0% 100%, 4% 0%, 8% 100%, 12% 0%, 16% 100%, 20% 0%, 24% 100%, 28% 0%, 32% 100%, 36% 0%, 40% 100%,
    44% 0%, 48% 100%, 52% 0%, 56% 100%, 60% 0%, 64% 100%, 68% 0%, 72% 100%, 76% 0%, 80% 100%, 84% 0%,
    88% 100%, 92% 0%, 96% 100%, 100% 0%, 100% 100%
  );
}
.appily-fourteen.page-press-product .vault-packet-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 2px dashed var(--line);
}
.appily-fourteen.page-press-product .vault-packet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appily-fourteen.page-press-product .vault-packet-body {
  padding: 12px 14px 16px;
}
.appily-fourteen.page-press-product .vault-packet-line {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss-deep);
  margin-bottom: 4px;
}
.appily-fourteen.page-press-product .vault-packet-body h3 {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.3;
}
.appily-fourteen.page-press-product .vault-packet-body .price {
  font-weight: 800;
  color: var(--wine);
  font-size: 0.92rem;
}
.appily-fourteen.page-press-product .vault-packet.tone-meadow { border-top: 3px solid var(--moss); }
.appily-fourteen.page-press-product .vault-packet.tone-heritage { border-top: 3px solid #8b6f4e; }
.appily-fourteen.page-press-product .vault-packet.tone-cut { border-top: 3px solid #c45c7a; }
.appily-fourteen.page-press-product .vault-packet.tone-trellis { border-top: 3px solid #5a8f6a; }
.appily-fourteen.page-press-product .vault-packet.tone-scent { border-top: 3px solid #b8860b; }

@media (max-width: 900px) {
  .appily-fourteen.page-press-product .specimen-stage-grid {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-product .press-mount-core {
    width: 200px;
    height: 200px;
  }
  .appily-fourteen.page-press-product .mount-ring-3 {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 640px) {
  .appily-fourteen.page-press-product .specimen-sheet {
    padding: 24px 18px 28px;
  }
  .appily-fourteen.page-press-product .specimen-sheet-meta {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-product .tray-press-form {
    flex-direction: column;
    align-items: stretch;
  }
  .appily-fourteen.page-press-product .tray-add-btn {
    width: 100%;
  }
}

/* ── Policy atelier ── */
.atelier-policy-hero {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--wine-deep), var(--wine));
  color: var(--parchment);
}
.atelier-policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 8px 0 12px;
}
.atelier-policy-hero em { color: var(--wheat); font-style: italic; }
.atelier-policy-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.atelier-policy-seal {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--wheat);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  background: rgba(255,255,255,0.08);
}
.atelier-policy-seal strong { font-size: 1.4rem; }
.atelier-policy-seal em { font-size: 0.7rem; font-style: normal; opacity: 0.85; }
.atelier-policy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.atelier-policy-tab {
  padding: 10px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-round);
  font-size: 0.84rem;
  font-weight: 600;
  background: var(--white);
}
.atelier-policy-tab.active {
  background: var(--wine);
  color: var(--parchment);
  border-color: var(--wine);
}
.atelier-policy-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

/* ── Pollen Wire Bureau (contact) ── */
.appily-fourteen.page-press-contact .wire-mast {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(145deg, var(--wine-deep) 0%, var(--wine) 55%, #3d1536 100%);
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-contact .wire-mast-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-contact .wire-mast-watermark {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.07;
  color: var(--parchment);
}
.appily-fourteen.page-press-contact .wire-filament {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(212, 165, 116, 0.22);
}
.appily-fourteen.page-press-contact .wire-filament.web-a {
  box-shadow:
    0 0 0 40px rgba(212, 165, 116, 0.04),
    0 0 0 80px rgba(212, 165, 116, 0.03),
    inset 0 0 0 1px rgba(248, 243, 234, 0.08);
}
.appily-fourteen.page-press-contact .wire-filament.web-b {
  width: 420px;
  height: 420px;
  opacity: 0.55;
  border-style: dashed;
}
.appily-fourteen.page-press-contact .wire-filament.web-c {
  width: 500px;
  height: 500px;
  opacity: 0.3;
}
.appily-fourteen.page-press-contact .wire-filament.web-a::before,
.appily-fourteen.page-press-contact .wire-filament.web-a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.35), transparent);
  transform-origin: center;
}
.appily-fourteen.page-press-contact .wire-filament.web-a::before { transform: translate(-50%, -50%) rotate(25deg); }
.appily-fourteen.page-press-contact .wire-filament.web-a::after { transform: translate(-50%, -50%) rotate(-35deg); }
.appily-fourteen.page-press-contact .wire-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wheat);
  box-shadow: 0 0 12px rgba(212, 165, 116, 0.65);
}
.appily-fourteen.page-press-contact .wire-node-1 { top: 28%; left: 58%; }
.appily-fourteen.page-press-contact .wire-node-2 { top: 52%; left: 72%; }
.appily-fourteen.page-press-contact .wire-node-3 { top: 68%; left: 54%; }
.appily-fourteen.page-press-contact .wire-mast-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.appily-fourteen.page-press-contact .wire-mast-vol {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
  opacity: 0.9;
}
.appily-fourteen.page-press-contact .wire-mast-copy h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
}
.appily-fourteen.page-press-contact .wire-mast-copy h1 em {
  color: var(--wheat);
  font-style: italic;
}
.appily-fourteen.page-press-contact .wire-mast-lede {
  max-width: 520px;
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.9;
}
.appily-fourteen.page-press-contact .wire-topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.appily-fourteen.page-press-contact .wire-topic-chips li {
  padding: 6px 12px;
  border: 1px solid rgba(248, 243, 234, 0.28);
  border-radius: var(--radius-round);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}
.appily-fourteen.page-press-contact .wire-signal-lamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}
.appily-fourteen.page-press-contact .wire-lamp-hood {
  width: 72px;
  height: 28px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #5a3d52, #3d1536);
  border: 2px solid rgba(212, 165, 116, 0.45);
}
.appily-fourteen.page-press-contact .wire-lamp-bulb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe9b8, var(--wheat));
  box-shadow: 0 0 18px rgba(212, 165, 116, 0.85);
  animation: wire-lamp-pulse 2.4s ease-in-out infinite;
}
@keyframes wire-lamp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}
.appily-fourteen.page-press-contact .wire-lamp-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wheat);
}
.appily-fourteen.page-press-contact .wire-lamp-code {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.75;
}
.appily-fourteen.page-press-contact .wire-mast-ridge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--wheat) 0,
    var(--wheat) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.35;
}

.appily-fourteen.page-press-contact .wire-floor {
  padding: 40px 0 56px;
  background: var(--parchment);
}
.appily-fourteen.page-press-contact .wire-floor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.appily-fourteen.page-press-contact .pollen-gram {
  position: relative;
  background: #fffdf8;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px 40px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.appily-fourteen.page-press-contact .pollen-gram-margin {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  background: linear-gradient(180deg, #e8a0a8, #d4737d);
  opacity: 0.85;
}
.appily-fourteen.page-press-contact .pollen-gram-tear {
  height: 8px;
  background: var(--parchment);
  clip-path: polygon(
    0% 100%, 3% 0%, 6% 100%, 9% 0%, 12% 100%, 15% 0%, 18% 100%, 21% 0%, 24% 100%, 27% 0%, 30% 100%,
    33% 0%, 36% 100%, 39% 0%, 42% 100%, 45% 0%, 48% 100%, 51% 0%, 54% 100%, 57% 0%, 60% 100%, 63% 0%,
    66% 100%, 69% 0%, 72% 100%, 75% 0%, 78% 100%, 81% 0%, 84% 100%, 87% 0%, 90% 100%, 93% 0%, 96% 100%, 100% 0%, 100% 100%
  );
}
.appily-fourteen.page-press-contact .pollen-gram-tear-top {
  position: absolute;
  top: 0;
  left: 14px;
  right: 0;
}
.appily-fourteen.page-press-contact .pollen-gram-tear-bottom {
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 0;
  transform: rotate(180deg);
}
.appily-fourteen.page-press-contact .pollen-gram-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-top: 6px;
}
.appily-fourteen.page-press-contact .pollen-gram-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.appily-fourteen.page-press-contact .pollen-gram-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--wine);
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  background: rgba(74, 25, 66, 0.04);
}
.appily-fourteen.page-press-contact .pollen-gram-label {
  margin: 0 0 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
.appily-fourteen.page-press-contact .pollen-gram-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-contact .pollen-gram-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.appily-fourteen.page-press-contact .pollen-gram-priority {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-round);
  background: var(--parchment);
  color: var(--wine);
}

.appily-fourteen.page-press-contact .wire-notice {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
}
.appily-fourteen.page-press-contact .wire-notice-success {
  background: rgba(123, 168, 137, 0.14);
  border: 1px solid rgba(123, 168, 137, 0.45);
  color: var(--wine-deep);
}
.appily-fourteen.page-press-contact .wire-notice-error {
  background: rgba(196, 92, 122, 0.1);
  border: 1px solid rgba(196, 92, 122, 0.4);
  color: #8b2d45;
}

.appily-fourteen.page-press-contact .pollen-gram-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.appily-fourteen.page-press-contact .pollen-gram-field {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: start;
}
.appily-fourteen.page-press-contact .pollen-gram-field-wide {
  grid-column: 1 / -1;
}
.appily-fourteen.page-press-contact .gram-key {
  padding-top: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  font-family: var(--font-display);
}
.appily-fourteen.page-press-contact .pollen-gram-field input,
.appily-fourteen.page-press-contact .pollen-gram-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: none;
  border-bottom: 2px dotted rgba(74, 25, 66, 0.25);
  border-radius: 0;
  font-size: 0.94rem;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.appily-fourteen.page-press-contact .pollen-gram-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
  background-image: repeating-linear-gradient(
    transparent,
    transparent 27px,
    rgba(74, 25, 66, 0.06) 27px,
    rgba(74, 25, 66, 0.06) 28px
  );
}
.appily-fourteen.page-press-contact .pollen-gram-field input:focus,
.appily-fourteen.page-press-contact .pollen-gram-field textarea:focus {
  outline: none;
  border-bottom-color: var(--wine);
  background-color: rgba(248, 243, 234, 0.65);
}
.appily-fourteen.page-press-contact .pollen-gram-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 2px solid var(--line);
}
.appily-fourteen.page-press-contact .pollen-gram-fine {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.appily-fourteen.page-press-contact .pollen-gram-fine a {
  color: var(--wine);
  font-weight: 700;
}
.appily-fourteen.page-press-contact .pollen-gram-send {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.appily-fourteen.page-press-contact .brass-registry {
  position: sticky;
  top: 96px;
  padding: 22px 18px 24px;
  background:
    linear-gradient(135deg, rgba(212, 165, 116, 0.08), transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(74, 25, 66, 0.03) 3px,
      rgba(74, 25, 66, 0.03) 4px
    ),
    var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-contact .brass-registry-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.appily-fourteen.page-press-contact .brass-registry-wax {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.appily-fourteen.page-press-contact .brass-registry-label {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
.appily-fourteen.page-press-contact .brass-registry-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-contact .brass-plates {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.appily-fourteen.page-press-contact .brass-plate {
  position: relative;
  padding: 14px 16px 14px 18px;
  background: linear-gradient(145deg, #e8c98a 0%, #d4a574 45%, #c49563 100%);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 4px rgba(74, 25, 66, 0.12),
    0 3px 8px rgba(46, 36, 51, 0.12);
}
.appily-fourteen.page-press-contact .brass-rivet {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f5e6c8, #8b6f4e);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}
.appily-fourteen.page-press-contact .brass-rivet-tl { top: 6px; left: 6px; }
.appily-fourteen.page-press-contact .brass-rivet-tr { top: 6px; right: 6px; }
.appily-fourteen.page-press-contact .brass-rivet-bl { bottom: 6px; left: 6px; }
.appily-fourteen.page-press-contact .brass-rivet-br { bottom: 6px; right: 6px; }
.appily-fourteen.page-press-contact .brass-plate-key {
  display: block;
  margin-bottom: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(46, 36, 51, 0.65);
}
.appily-fourteen.page-press-contact .brass-plate-val {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.45;
  word-break: break-word;
}
.appily-fourteen.page-press-contact a.brass-plate-val:hover {
  color: var(--wine);
  text-decoration: underline;
}
.appily-fourteen.page-press-contact .brass-registry-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.appily-fourteen.page-press-contact .btn-ghost {
  border: 2px solid var(--wine);
  color: var(--wine);
  background: transparent;
  font-weight: 700;
}
.appily-fourteen.page-press-contact .btn-ghost:hover {
  background: var(--wine);
  color: var(--parchment);
}

.appily-fourteen.page-press-contact .wire-quick-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.appily-fourteen.page-press-contact .wire-quick-tile {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.appily-fourteen.page-press-contact .wire-quick-tile:hover {
  transform: translateY(-2px);
  border-color: var(--wine);
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-contact .wire-quick-num {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.appily-fourteen.page-press-contact .wire-quick-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.appily-fourteen.page-press-contact .wire-quick-body strong {
  font-size: 0.88rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-contact .wire-quick-body span {
  font-size: 0.76rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .appily-fourteen.page-press-contact .wire-mast-grid {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-contact .wire-signal-lamp {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .appily-fourteen.page-press-contact .wire-floor-grid {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-contact .brass-registry {
    position: static;
  }
  .appily-fourteen.page-press-contact .wire-quick-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .appily-fourteen.page-press-contact .wire-mast {
    padding: 36px 0 44px;
  }
  .appily-fourteen.page-press-contact .pollen-gram {
    padding: 28px 18px 32px 28px;
  }
  .appily-fourteen.page-press-contact .pollen-gram-fields {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-contact .pollen-gram-field {
    grid-template-columns: 44px 1fr;
  }
  .appily-fourteen.page-press-contact .pollen-gram-meta {
    align-items: flex-start;
  }
  .appily-fourteen.page-press-contact .pollen-gram-foot {
    flex-direction: column;
    align-items: stretch;
  }
  .appily-fourteen.page-press-contact .pollen-gram-send {
    width: 100%;
  }
}

/* ── Pollen Press order status — germination chamber ── */
.appily-fourteen.page-press-germination .germ-mast {
  position: relative;
  padding: 44px 0 40px;
  background: linear-gradient(165deg, #1e3d28 0%, #2d5a3d 38%, var(--moss-deep) 72%, #4a7a58 100%);
  color: var(--parchment);
  overflow: hidden;
}
.appily-fourteen.page-press-germination .germ-mast-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-germination .germ-mast-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 700;
  opacity: 0.08;
  line-height: 1;
}
.appily-fourteen.page-press-germination .germ-warm-glow {
  position: absolute;
  left: 55%;
  top: 60%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.22), transparent 68%);
}
.appily-fourteen.page-press-germination .germ-humidity {
  position: absolute;
  border-radius: 50%;
  background: rgba(248, 243, 234, 0.12);
  filter: blur(1px);
}
.appily-fourteen.page-press-germination .germ-humidity-a { width: 14px; height: 22px; top: 18%; left: 68%; transform: rotate(-12deg); }
.appily-fourteen.page-press-germination .germ-humidity-b { width: 10px; height: 16px; top: 32%; left: 74%; transform: rotate(8deg); opacity: 0.7; }
.appily-fourteen.page-press-germination .germ-humidity-c { width: 12px; height: 18px; top: 48%; left: 66%; transform: rotate(-5deg); opacity: 0.5; }
.appily-fourteen.page-press-germination .germ-mast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(150px, 190px);
  gap: 28px;
  align-items: center;
}
.appily-fourteen.page-press-germination .germ-mast-vol {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 10px;
}
.appily-fourteen.page-press-germination .germ-mast-copy h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
  max-width: 22ch;
}
.appily-fourteen.page-press-germination .germ-mast-copy h1 em {
  font-style: italic;
  color: var(--wheat);
}
.appily-fourteen.page-press-germination .germ-mast-lede {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.88;
  max-width: 50ch;
  line-height: 1.55;
}
.appily-fourteen.page-press-germination .germ-growth-meter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 14px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(248, 243, 234, 0.28);
  background: rgba(0, 0, 0, 0.12);
  text-align: center;
}
.appily-fourteen.page-press-germination .growth-meter-tube {
  position: relative;
  width: 28px;
  height: 88px;
  margin-bottom: 6px;
  border-radius: var(--radius-round);
  border: 2px solid rgba(248, 243, 234, 0.35);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.appily-fourteen.page-press-germination .growth-meter-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--growth, 10%);
  background: linear-gradient(180deg, var(--wheat), #e8c070);
  border-radius: 0 0 12px 12px;
  transition: height 0.5s ease;
}
.appily-fourteen.page-press-germination .growth-meter-cap {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--parchment);
  opacity: 0.5;
}
.appily-fourteen.page-press-germination .growth-meter-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
.appily-fourteen.page-press-germination .growth-meter-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wheat);
  line-height: 1;
}
.appily-fourteen.page-press-germination .growth-meter-ref {
  font-size: 0.78rem;
  opacity: 0.8;
  letter-spacing: 0.06em;
}
.appily-fourteen.page-press-germination .germ-mast-ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--wheat) 0 10px, transparent 10px 18px);
  opacity: 0.35;
}

.appily-fourteen.page-press-germination-lost .germ-void {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(180deg, #e8efe9, var(--parchment));
  text-align: center;
  overflow: hidden;
}
.appily-fourteen.page-press-germination-lost .germ-void-glass {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.appily-fourteen.page-press-germination-lost .void-chamber-ring {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px dashed rgba(74, 25, 66, 0.2);
  background: rgba(255, 255, 255, 0.45);
}
.appily-fourteen.page-press-germination-lost .void-condensation {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
.appily-fourteen.page-press-germination-lost .void-condensation-a { width: 16px; height: 24px; top: 22%; left: 52%; }
.appily-fourteen.page-press-germination-lost .void-condensation-b { width: 12px; height: 18px; top: 30%; left: 46%; opacity: 0.7; }
.appily-fourteen.page-press-germination-lost .germ-void-wrap {
  position: relative;
  z-index: 1;
}
.appily-fourteen.page-press-germination-lost .germ-void-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-round);
  background: rgba(74, 25, 66, 0.08);
  border: 2px dashed var(--line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.appily-fourteen.page-press-germination-lost .germ-void-wrap h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--wine-deep);
}
.appily-fourteen.page-press-germination-lost .germ-void-wrap p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.appily-fourteen.page-press-germination-lost .germ-void-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.appily-fourteen.page-press-germination .germ-floor {
  padding: 32px 0 64px;
  background: var(--parchment);
}

.appily-fourteen.page-press-germination .chamber-doorplate {
  position: relative;
  padding: 24px 28px;
  margin-bottom: 28px;
  background: linear-gradient(145deg, #5a4a42, #3d322c);
  border: 3px solid #2a221e;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  color: var(--parchment);
}
.appily-fourteen.page-press-germination .doorplate-glass {
  position: absolute;
  inset: 12px 12px 12px auto;
  width: 38%;
  max-width: 220px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(123, 168, 137, 0.25), rgba(74, 25, 66, 0.15));
  border: 2px solid rgba(248, 243, 234, 0.15);
  opacity: 0.65;
}
.appily-fourteen.page-press-germination .doorplate-bolt {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #c4b8a8, #6b5d52);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}
.appily-fourteen.page-press-germination .doorplate-bolt-tl { top: 10px; left: 10px; }
.appily-fourteen.page-press-germination .doorplate-bolt-tr { top: 10px; right: 10px; }
.appily-fourteen.page-press-germination .doorplate-bolt-bl { bottom: 10px; left: 10px; }
.appily-fourteen.page-press-germination .doorplate-bolt-br { bottom: 10px; right: 10px; }
.appily-fourteen.page-press-germination .doorplate-body {
  position: relative;
  z-index: 1;
  max-width: 58%;
}
.appily-fourteen.page-press-germination .doorplate-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wheat);
  opacity: 0.85;
}
.appily-fourteen.page-press-germination .doorplate-order {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  word-break: break-all;
}
.appily-fourteen.page-press-germination .doorplate-status {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-round);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(248, 243, 234, 0.25);
}
.appily-fourteen.page-press-germination .chamber-doorplate.tone-rooted .doorplate-status {
  background: var(--moss);
  border-color: #5a9a6a;
  color: var(--parchment);
}
.appily-fourteen.page-press-germination .chamber-doorplate.tone-windborne .doorplate-status {
  background: rgba(212, 165, 116, 0.25);
  border-color: var(--wheat);
  color: var(--wheat);
}
.appily-fourteen.page-press-germination .chamber-doorplate.tone-wilt .doorplate-status {
  background: rgba(196, 92, 122, 0.25);
  border-color: rgba(196, 92, 122, 0.5);
  color: #f5c4d0;
}
.appily-fourteen.page-press-germination .chamber-doorplate.tone-sealed .doorplate-status {
  background: rgba(123, 168, 137, 0.3);
  border-color: rgba(123, 168, 137, 0.55);
}
.appily-fourteen.page-press-germination .doorplate-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin: 0;
}
.appily-fourteen.page-press-germination .doorplate-meta div {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-md);
  border: 1px solid rgba(248, 243, 234, 0.12);
}
.appily-fourteen.page-press-germination .doorplate-meta dt {
  margin: 0 0 4px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}
.appily-fourteen.page-press-germination .doorplate-meta dd {
  margin: 0;
  font-weight: 700;
  font-size: 0.88rem;
}

.appily-fourteen.page-press-germination .germ-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.appily-fourteen.page-press-germination .substrate-panel {
  grid-row: span 2;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-germination .substrate-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.appily-fourteen.page-press-germination .substrate-wax {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--wheat);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 40px;
  text-align: center;
  border: 2px solid var(--wheat);
}
.appily-fourteen.page-press-germination .substrate-head h3 {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-germination .substrate-head p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.appily-fourteen.page-press-germination .substrate-column {
  position: relative;
  margin-bottom: 20px;
  padding-left: 36px;
}
.appily-fourteen.page-press-germination .spore-capsule {
  position: absolute;
  left: 8px;
  top: calc(12.5% + var(--capsule-stage, 0) * 25%);
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe9b8, var(--wheat));
  border: 2px solid var(--wine);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.35);
  transition: top 0.45s ease;
  z-index: 2;
}
.appily-fourteen.page-press-germination .substrata-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.appily-fourteen.page-press-germination .stratum {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border-bottom: 2px solid var(--line);
  background: var(--parchment);
  transition: background 0.2s;
}
.appily-fourteen.page-press-germination .stratum:last-child {
  border-bottom: 0;
}
.appily-fourteen.page-press-germination .stratum-1 { background: linear-gradient(90deg, #f5ebe0, var(--parchment)); }
.appily-fourteen.page-press-germination .stratum-2 { background: linear-gradient(90deg, #ebe4d4, #f0e8da); }
.appily-fourteen.page-press-germination .stratum-3 { background: linear-gradient(90deg, #e0d6c4, #ebe2d2); }
.appily-fourteen.page-press-germination .stratum-4 { background: linear-gradient(90deg, #d4c8b4, #e2d8c8); }
.appily-fourteen.page-press-germination .stratum.is-done {
  background-image: linear-gradient(90deg, rgba(123, 168, 137, 0.12), transparent);
}
.appily-fourteen.page-press-germination .stratum.is-active {
  background-image: linear-gradient(90deg, rgba(212, 165, 116, 0.2), transparent);
  box-shadow: inset 4px 0 0 var(--wheat);
}
.appily-fourteen.page-press-germination .stratum-depth {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}
.appily-fourteen.page-press-germination .stratum-copy strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 2px;
}
.appily-fourteen.page-press-germination .stratum-copy span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
}
.appily-fourteen.page-press-germination .stratum-root {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(74, 25, 66, 0.08) 4px, rgba(74, 25, 66, 0.08) 8px);
  opacity: 0;
  transition: opacity 0.2s;
}
.appily-fourteen.page-press-germination .stratum.is-done .stratum-root,
.appily-fourteen.page-press-germination .stratum.is-active .stratum-root {
  opacity: 1;
}

.appily-fourteen.page-press-germination .substrate-wilt {
  text-align: center;
  padding: 28px 18px;
  margin-bottom: 20px;
  background: var(--parchment);
  border-radius: var(--radius-md);
  border: 2px dashed rgba(196, 92, 122, 0.35);
}
.appily-fourteen.page-press-germination .substrate-wilt-stamp {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-round);
  background: rgba(196, 92, 122, 0.15);
  color: #8b3a52;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.appily-fourteen.page-press-germination .substrate-wilt p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.appily-fourteen.page-press-germination .rooting-bed {
  padding: 16px 18px;
  background: linear-gradient(180deg, #e8dfd0, var(--parchment));
  border-radius: var(--radius-md);
  border: 2px solid #c4b8a8;
}
.appily-fourteen.page-press-germination .rooting-bed h4 {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-germination .rooting-bed p {
  margin: 0 0 6px;
  font-size: 0.88rem;
  color: var(--wine-deep);
  line-height: 1.5;
}
.appily-fourteen.page-press-germination .rooting-phone {
  font-weight: 700;
  color: var(--moss-deep);
}

.appily-fourteen.page-press-germination .sachet-rack-panel {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
  box-shadow: var(--shadow-soft);
}
.appily-fourteen.page-press-germination .sachet-rack-head {
  position: relative;
  margin-bottom: 18px;
  padding-top: 10px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--line);
}
.appily-fourteen.page-press-germination .sachet-rack-wire {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b7355, #c4a882, #8b7355);
  border-radius: 2px;
}
.appily-fourteen.page-press-germination .sachet-rack-head h3 {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-germination .sachet-rack-head p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.appily-fourteen.page-press-germination .sachet-rack-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}
.appily-fourteen.page-press-germination .sachet-peg-row {
  position: relative;
  display: grid;
  grid-template-columns: 12px 40px 32px 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 12px 0 12px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}
.appily-fourteen.page-press-germination .sachet-peg-row:last-child {
  border-bottom: 0;
}
.appily-fourteen.page-press-germination .sachet-clip {
  width: 8px;
  height: 14px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #c4a882, #8b7355);
  align-self: start;
  margin-top: 4px;
}
.appily-fourteen.page-press-germination .sachet-packet {
  width: 36px;
  height: 44px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: 0 2px 4px rgba(46, 36, 51, 0.1);
  transform: rotate(-2deg);
}
.appily-fourteen.page-press-germination .sachet-packet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appily-fourteen.page-press-germination .sachet-packet-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--parchment);
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--wine);
}
.appily-fourteen.page-press-germination .sachet-index {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
  font-size: 0.78rem;
}
.appily-fourteen.page-press-germination .sachet-title {
  font-weight: 600;
  color: var(--wine-deep);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.appily-fourteen.page-press-germination .sachet-qty {
  color: var(--muted);
  font-size: 0.76rem;
}
.appily-fourteen.page-press-germination .sachet-amt {
  font-weight: 800;
  color: var(--wine);
  white-space: nowrap;
}
.appily-fourteen.page-press-germination .sachet-rack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--parchment);
  border: 2px solid var(--moss);
  border-radius: var(--radius-md);
  font-weight: 700;
}
.appily-fourteen.page-press-germination .sachet-rack-total strong {
  font-size: 1.1rem;
  color: var(--wine);
}

.appily-fourteen.page-press-germination .chamber-tag-desk {
  position: relative;
  background: #fffef8;
  border: 2px solid var(--wine);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.appily-fourteen.page-press-germination .tag-desk-clip {
  position: absolute;
  top: -2px;
  left: 24px;
  width: 18px;
  height: 28px;
  background: linear-gradient(180deg, #8b7355, #5a4a38);
  border-radius: 0 0 4px 4px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.appily-fourteen.page-press-germination .tag-desk-clip::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4a882;
}
.appily-fourteen.page-press-germination .tag-desk-inner {
  padding: 28px 20px 26px;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 27px,
    rgba(74, 25, 66, 0.04) 27px,
    rgba(74, 25, 66, 0.04) 28px
  );
}
.appily-fourteen.page-press-germination .tag-desk-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}
.appily-fourteen.page-press-germination .tag-desk-badge {
  padding: 6px 10px;
  background: var(--moss);
  color: var(--parchment);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: var(--radius-md);
}
.appily-fourteen.page-press-germination .tag-desk-head h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-germination .tag-desk-head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.appily-fourteen.page-press-germination .tag-field {
  display: block;
  margin-bottom: 14px;
}
.appily-fourteen.page-press-germination .tag-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
}
.appily-fourteen.page-press-germination .tag-field input,
.appily-fourteen.page-press-germination .tag-field select,
.appily-fourteen.page-press-germination .tag-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--white);
}
.appily-fourteen.page-press-germination .tag-field input:focus,
.appily-fourteen.page-press-germination .tag-field select:focus,
.appily-fourteen.page-press-germination .tag-field textarea:focus {
  outline: none;
  border-color: var(--moss);
}
.appily-fourteen.page-press-germination .tag-submit {
  width: 100%;
  font-weight: 700;
}
.appily-fourteen.page-press-germination .tag-filings {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dashed var(--line);
}
.appily-fourteen.page-press-germination .tag-filings h4 {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--wine-deep);
}
.appily-fourteen.page-press-germination .tag-filing-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}
.appily-fourteen.page-press-germination .tag-filing-item:last-child {
  border-bottom: 0;
}
.appily-fourteen.page-press-germination .tag-filing-item strong {
  color: var(--wine);
}
.appily-fourteen.page-press-germination .tag-filing-item p {
  margin: 6px 0;
  color: var(--muted);
  line-height: 1.5;
}
.appily-fourteen.page-press-germination .tag-filing-item time {
  font-size: 0.76rem;
  color: var(--muted);
}

.appily-fourteen.page-press-germination .germ-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px dashed var(--line);
}
.appily-fourteen.page-press-germination .btn-ghost {
  border: 2px solid var(--wine);
  color: var(--wine);
  background: transparent;
  font-weight: 700;
}
.appily-fourteen.page-press-germination .btn-ghost:hover {
  background: var(--wine);
  color: var(--parchment);
}

@media (max-width: 980px) {
  .appily-fourteen.page-press-germination .germ-mast-grid {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-germination .germ-growth-meter {
    max-width: 190px;
  }
  .appily-fourteen.page-press-germination .germ-layout {
    grid-template-columns: 1fr;
  }
  .appily-fourteen.page-press-germination .substrate-panel {
    grid-row: auto;
  }
  .appily-fourteen.page-press-germination .doorplate-body {
    max-width: none;
  }
  .appily-fourteen.page-press-germination .doorplate-glass {
    display: none;
  }
}

@media (max-width: 640px) {
  .appily-fourteen.page-press-germination .germ-mast {
    padding: 32px 0 28px;
  }
  .appily-fourteen.page-press-germination .germ-mast-copy h1 {
    max-width: none;
  }
  .appily-fourteen.page-press-germination .stratum {
    grid-template-columns: 60px 1fr;
    min-height: 64px;
    padding: 12px;
  }
  .appily-fourteen.page-press-germination .sachet-peg-row {
    grid-template-columns: 10px 36px 28px 1fr auto;
  }
  .appily-fourteen.page-press-germination .sachet-qty {
    grid-column: 3 / 5;
    font-size: 0.72rem;
  }
  .appily-fourteen.page-press-germination .germ-foot {
    flex-direction: column;
  }
  .appily-fourteen.page-press-germination .germ-foot .btn {
    width: 100%;
    text-align: center;
  }
}
