/* =========================================================================
   Liquid Landing — design system, ported verbatim from the design handoff
   (design_handoff_liquid_landing/styles.css). The prototype's <image-slot>
   placeholder element is replaced by real <img> selectors per SPEC §Files.
   Tokens live in tokens.css.
   ========================================================================= */
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0; background: var(--sand); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.62; font-weight: 380;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  background-image: radial-gradient(120% 60% at 50% -10%, rgba(201,122,43,.09), transparent 60%);
  background-repeat: no-repeat;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-deep); }
::selection { background: var(--amber); color: #fff; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -.012em; margin: 0; }
em { font-style: italic; }

.eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-3); }
.eyebrow.accent { color: var(--clay); }
.lead { font-size: 1.16rem; line-height: 1.64; color: var(--ink-2); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* on dark palm bands */
.on-dark { background: var(--palm); color: #EFE7D6; background-image: radial-gradient(100% 70% at 80% 0%, rgba(201,122,43,.16), transparent 65%); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #F7F1E2; }

/* ---- buttons ---- */
.btn { font-family: var(--sans); font-size: .77rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; display: inline-flex; align-items: center; justify-content: center; gap: .6em; padding: 1.1em 2.1em; border: 1px solid var(--ink); background: var(--ink); color: var(--sand); cursor: pointer; border-radius: var(--r); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.btn:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--sand); }
/* White text needs the deep green: #fff on --green (#2F9E4F) is only ~3:1 and fails AA.
   --green-deep (#1E6E38) carries white at ~5.5:1. */
.btn-green { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.btn-green:hover { background: var(--ink); border-color: var(--ink); color: var(--sand); }
.btn:disabled { opacity: .4; cursor: not-allowed; }
/* confirmed notify-me state (F4) — only ever shown to a signed-in customer */
.btn.on { background: transparent; color: var(--green-deep); border-color: var(--green-deep); }
.btn.on:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--sand-2); }
.pc-add .btn.on { background: var(--sand-2); color: var(--green-deep); border-color: var(--green-deep); }
.pc-add .btn.on:hover { background: var(--green-deep); color: var(--sand-2); }
.btn-sm { padding: .8em 1.4em; font-size: .7rem; }

.link-underline { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .5em; white-space: nowrap; padding-bottom: 3px; border-bottom: 1px solid currentColor; transition: gap .3s var(--ease), color .25s; }
.link-underline:hover { gap: .9em; color: var(--clay); }
.link-underline .arw { transition: transform .3s var(--ease); }
.link-underline:hover .arw { transform: translateX(3px); }
.on-dark .link-underline:hover { color: #fff; }

.text-link { border-bottom: 1px solid var(--line-2); padding-bottom: 1px; }
.text-link:hover { border-color: currentColor; }

/* ---- forms ---- */
.field { display: grid; gap: 8px; }
.field label { font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea { font-family: var(--sans); font-size: .98rem; color: var(--ink); background: var(--sand-2); border: 1px solid var(--line-2); border-radius: var(--r); padding: 13px 14px; outline: none; transition: border-color .2s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field .hint { font-size: .8rem; color: var(--ink-3); }
.field .err { font-size: .8rem; color: var(--clay); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.form-grid .span2 { grid-column: 1 / -1; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-head { position: sticky; top: 0; z-index: 60; background: color-mix(in oklab, var(--sand) 90%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.head-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(18px, 4vw, 56px); padding-block: 19px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 31px; width: auto; }
.head-search { justify-self: center; display: flex; align-items: center; gap: .7rem; width: min(430px, 38vw); border-bottom: 1px solid var(--line-2); padding-bottom: 9px; color: var(--ink-3); }
.head-search svg { flex: none; }
.head-search input { border: 0; background: none; outline: none; font-family: var(--sans); font-size: .9rem; color: var(--ink); width: 100%; }
.head-search input::placeholder { color: var(--ink-3); }
.head-utils { justify-self: end; display: flex; align-items: center; gap: clamp(13px, 1.8vw, 24px); }
.icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; color: var(--ink); background: none; border: 0; cursor: pointer; transition: color .2s; }
.icon-btn:hover { color: var(--clay); }
.icon-btn.on { color: var(--clay); }
.count-badge[hidden] { display: none; }
.count-badge { position: absolute; top: -7px; right: -9px; min-width: 17px; height: 17px; padding: 0 4px; display: grid; place-items: center; background: var(--green-deep); color: #fff; font-size: .62rem; font-weight: 700; line-height: 1; border-radius: 999px; }
.head-nav { border-top: 1px solid var(--line); }
.head-nav ul { list-style: none; margin: 0; padding: 13px 0; display: flex; justify-content: center; gap: clamp(18px, 3.4vw, 46px); }
.head-nav a { font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); position: relative; padding-bottom: 2px; }
.head-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--accent); transition: right .3s var(--ease); }
.head-nav a:hover { color: var(--ink); }
.head-nav a:hover::after { right: 0; }
.head-nav a[aria-current] { color: var(--ink); }
.head-nav a[aria-current]::after { right: 0; }

/* auth chip */
.auth-chip { font-family: var(--sans); font-size: .73rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; background: none; border: 0; cursor: pointer; color: var(--ink); display: inline-flex; align-items: center; gap: .55em; padding: 0; transition: color .2s; }
.auth-chip:hover { color: var(--clay); }
.auth-chip .avatar { width: 27px; height: 27px; border-radius: 999px; background: var(--green-deep); color: #fff; display: grid; place-items: center; font-size: .73rem; font-weight: 700; letter-spacing: 0; }
[data-auth="out"] .auth-in { display: none; }
[data-auth="in"] .auth-out { display: none; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-foot { background: var(--palm); color: #D5CFBE; margin-top: var(--section); background-image: radial-gradient(90% 80% at 15% 0%, rgba(201,122,43,.14), transparent 62%); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(26px, 5vw, 68px); padding-block: clamp(56px, 7vw, 92px) clamp(36px, 4vw, 56px); }
.site-foot .brand img { height: 34px; }
.foot-blurb { margin-top: 20px; max-width: 32ch; color: #A6AF9C; font-size: .97rem; }
.foot-ship { margin-top: 18px; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green-lit); }
.foot-col h4 { font-family: var(--sans); font-size: .69rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #A6AF9C; margin: 0 0 17px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { color: #C9C3B2; font-size: .95rem; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid #26402F; padding-block: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* =========================================================================
   STANDALONE CHROME — for pages that cannot ask the database for anything
   -------------------------------------------------------------------------
   The normal header and footer render a cart count, auth state and a
   category nav — all of it live data. A page that must render when the app
   itself is the thing that's broken (500) cannot depend on any of that, so
   it uses this instead: static markup, same visual language, no data.
   Ported verbatim from the design handoff (styles.css, "Standalone layout.html").
   ========================================================================= */
.head-standalone { display: flex; align-items: center; justify-content: center; padding-block: 19px; }
.site-foot.foot-standalone { margin-top: 0; }
.foot-standalone .foot-top { grid-template-columns: 1.6fr 1fr; }
.standalone-main { display: grid; place-items: center; padding-block: clamp(60px, 10vw, 132px); }
.standalone-body { text-align: center; max-width: 52ch; margin-inline: auto; }
.standalone-body h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); }
.standalone-body h1 em { color: var(--clay); }
.standalone-body p { color: var(--ink-2); margin: 18px auto 0; text-wrap: pretty; }
.standalone-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
/* An aside that must not depend on our servers — a phone number stated in full
   rather than a link to Contact.html, which the same app serves. */
.standalone-aside { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .92rem; color: var(--ink-3); }
.foot-bottom .copy { color: #A6AF9C; font-size: .81rem; }
.foot-social { display: flex; gap: 20px; }
.foot-social a { color: #A6AF9C; }
.foot-social a:hover { color: var(--green-lit); }

/* =========================================================================
   PRODUCT CARD
   ========================================================================= */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 2.6vw, 44px) clamp(18px, 2vw, 30px); }
.product-card { display: flex; flex-direction: column; }
.pc-media { position: relative; background: var(--sand-2); border: 1px solid var(--line); border-radius: var(--r); aspect-ratio: 3 / 4; overflow: hidden; }
.pc-media img { width: 100%; height: 100%; object-fit: contain; }
.pc-fav { position: absolute; top: 11px; right: 11px; z-index: 3; width: 33px; height: 33px; border-radius: 999px; display: grid; place-items: center; background: color-mix(in oklab, var(--sand-2) 84%, transparent); border: 1px solid var(--line); color: var(--ink-2); cursor: pointer; opacity: 0; transform: translateY(-4px); transition: .25s var(--ease); }
.product-card:hover .pc-fav, .pc-fav.on { opacity: 1; transform: none; }
.pc-fav.on { color: var(--clay); border-color: var(--clay); }
.pc-flag { position: absolute; top: 11px; left: 11px; z-index: 3; font-size: .59rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; background: var(--ink); color: var(--sand); padding: 6px 10px; border-radius: 2px; }
.pc-add { position: absolute; left: 13px; right: 13px; bottom: 13px; z-index: 3; opacity: 0; transform: translateY(10px); transition: .3s var(--ease); }
.product-card:hover .pc-add { opacity: 1; transform: none; }
.pc-add .btn { width: 100%; padding-block: .85em; background: var(--sand-2); color: var(--ink); border-color: var(--ink); }
.pc-add .btn:hover { background: var(--ink); color: var(--sand-2); }
.product-card.is-out .pc-media img { opacity: .6; }
.pc-info { padding-top: 17px; display: block; }
.pc-brand { font-size: .67rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.pc-name { font-family: var(--serif); font-weight: 400; font-size: 1.46rem; line-height: 1.12; margin: 5px 0 0; }
.pc-region { font-size: .82rem; color: var(--ink-2); margin-top: 7px; }
.pc-meta { font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-top: 5px; }
.pc-price { font-family: var(--serif); font-size: 1.3rem; margin-top: 11px; }

/* =========================================================================
   PAGE HEADER (interior pages)
   ========================================================================= */
.page-head { padding-block: clamp(34px, 4.5vw, 66px) clamp(26px, 3vw, 42px); border-bottom: 1px solid var(--line); }
.page-head .eyebrow { display: block; margin-bottom: 15px; }
.page-head h1 { font-size: var(--h1); }
.page-head .sub { color: var(--ink-2); margin: 16px 0 0; max-width: 52ch; }
.crumbs { display: flex; gap: 9px; align-items: center; white-space: nowrap; font-size: .71rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.crumbs .sep { opacity: .5; }
.crumbs .cur { color: var(--ink); }

/* empty states */
.empty { text-align: center; padding-block: clamp(50px, 8vw, 104px); }
.empty h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.empty p { color: var(--ink-2); margin: 14px auto 30px; max-width: 40ch; }
.empty-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* an empty state with no paragraph still needs the gap the paragraph used to carry */
.empty h2 + .empty-actions { margin-top: 30px; }

/* qty stepper */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r); user-select: none; background: var(--sand-2); }
.qty button { width: 40px; height: 40px; background: none; border: 0; font-size: 1.1rem; color: var(--ink); cursor: pointer; transition: background .2s; }
.qty button:hover { background: var(--ink); color: var(--sand); }
.qty span { width: 40px; text-align: center; font-size: .92rem; font-weight: 500; }
.qty-lg button { width: 50px; height: 52px; }
.qty-lg span { width: 48px; }

/* order summary panel */
.panel { background: var(--sand-2); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(22px, 2.6vw, 32px); }
.panel h3 { font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 22px; }
.sum-row { display: flex; justify-content: space-between; gap: 16px; padding-block: 11px; font-size: .96rem; color: var(--ink-2); }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 18px; color: var(--ink); align-items: baseline; }
.sum-row.total .v { font-family: var(--serif); font-size: 1.7rem; }
.sum-note { font-size: .82rem; color: var(--ink-3); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }

/* =========================================================================
   AGE GATE
   ========================================================================= */
.age-gate { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; background: color-mix(in oklab, var(--palm) 95%, transparent); transition: opacity .4s var(--ease); }
.age-gate.out { opacity: 0; pointer-events: none; }
.age-card { background: var(--sand); border: 1px solid var(--line-2); border-radius: var(--r); max-width: 450px; width: 100%; padding: clamp(30px, 5vw, 50px); text-align: center; }
.age-card img { height: 34px; width: auto; margin: 0 auto 28px; }
.age-card h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.age-card p { color: var(--ink-2); margin: 13px 0 0; font-size: 1rem; }
.age-actions { display: flex; gap: 11px; margin-top: 28px; }
.age-actions .btn { flex: 1; }
.age-fine { font-size: .78rem !important; color: var(--ink-3) !important; margin-top: 20px !important; }

/* toast / sign-in nudge */
.toast { position: fixed; left: 50%; top: 24px; z-index: 120; transform: translate(-50%, -20px); opacity: 0; pointer-events: none; display: flex; align-items: center; gap: 18px; background: var(--palm); color: #EFE7D6; padding: 15px 22px; border-radius: var(--r); font-size: .92rem; transition: .35s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast button { background: none; border: 0; color: var(--green-lit); cursor: pointer; font-family: var(--sans); font-size: .73rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

@media (max-width: 1040px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .head-search { display: none; }
  .head-main { grid-template-columns: auto 1fr; }
  .head-utils { grid-column: 2; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  /* The category row has no room to fit centered past a handful of
     categories, and had no wrap or scroll — it just clipped at the viewport
     edge. A horizontal swipe strip is the usual mobile pattern here; the
     scrollbar itself is hidden since a swipeable strip reads better without
     one hinting there's "more" via its own visible track. */
  .head-nav ul {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .head-nav ul::-webkit-scrollbar { display: none; }
  .head-nav li { flex: none; }
}

/* =========================================================================
   FAQ (F8 page + F3 accordion subset) — one source, SPEC §9
   ========================================================================= */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 20px 0; font-family: var(--serif); font-size: 1.24rem; color: var(--ink); transition: color .2s var(--ease); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--clay); }
.faq-list summary .mk { flex: none; width: 13px; height: 13px; position: relative; align-self: center; color: var(--ink-3); }
.faq-list summary .mk::before, .faq-list summary .mk::after { content: ""; position: absolute; inset: 50% 0 auto; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
.faq-list summary .mk::after { transform: rotate(90deg); }
.faq-list details[open] summary, .faq-list details[open] summary .mk { color: var(--clay); }
.faq-list details[open] summary .mk::after { transform: rotate(0deg); }
.faq-a { color: var(--ink-2); margin: 0; padding: 0 0 22px; max-width: 56ch; }
.faq-a strong { font-weight: 600; color: var(--ink); }
.faq-a a { border-bottom: 1px solid var(--line-2); }

/* =========================================================================
   Long-form document pages (F8 · Your rights and ours)
   ========================================================================= */
.doc-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 6vw, 84px); align-items: start; padding-block: clamp(30px, 4vw, 50px) 0; }
.doc-index { position: sticky; top: 132px; }
.doc-index h4 { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; }
.doc-index ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; counter-reset: di; }
.doc-index a { font-size: .93rem; color: var(--ink-2); }
.doc-index a:hover { color: var(--clay); }
.doc-index .di-group { margin-top: 20px; }
.doc-body { max-width: 68ch; }
.doc-body h2 { font-size: clamp(1.75rem, 2.7vw, 2.3rem); margin: 0 0 4px; scroll-margin-top: 150px; }
.doc-body h2 + .doc-kicker { font-size: .73rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); margin: 0 0 26px; }
.doc-body h3 { font-size: 1.28rem; margin: 38px 0 10px; scroll-margin-top: 150px; }
.doc-body p { color: var(--ink-2); margin: 0 0 14px; }
.doc-body ul { margin: 0 0 16px; padding-left: 20px; color: var(--ink-2); }
.doc-body li { margin-bottom: 8px; }
.doc-body strong { color: var(--ink); font-weight: 600; }
.doc-body a { border-bottom: 1px solid var(--line-2); }
.doc-sec + .doc-sec { margin-top: clamp(48px, 6vw, 82px); padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.doc-meta { font-size: .85rem; color: var(--ink-3); margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); }
.todo { background: color-mix(in oklab, var(--amber) 22%, var(--sand-2)); color: var(--ink); border: 1px dashed var(--amber); border-radius: var(--r); padding: 1px 7px; font-size: .92em; }
@media (max-width: 900px) { .doc-layout { grid-template-columns: 1fr; } .doc-index { position: static; } }

/* =========================================================================
   Sign-in sheet (F7) — Google / Apple only, SPEC §13
   ========================================================================= */
.sheet[hidden] { display: none; }
.sheet { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.sheet-scrim { position: absolute; inset: 0; background: color-mix(in oklab, var(--palm) 62%, transparent); opacity: 0; transition: opacity .26s var(--ease); }
.sheet.show .sheet-scrim { opacity: 1; }
.sheet-card { position: relative; width: min(420px, 100%); background: var(--sand-2); border: 1px solid var(--line-2); border-radius: var(--r); padding: clamp(28px, 4vw, 40px); opacity: 0; transform: translateY(12px) scale(.985); transition: .3s var(--ease); }
.sheet.show .sheet-card { opacity: 1; transform: none; }
.sheet-x { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 1.5rem; line-height: 1; color: var(--ink-3); cursor: pointer; padding: 4px; }
.sheet-x:hover { color: var(--ink); }
.sheet-card h2 { font-size: 1.9rem; margin: 0; }
.sheet-why { font-size: 1rem; color: var(--clay); margin: 10px 0 0; }
.sheet-note { font-size: .93rem; color: var(--ink-2); margin: 12px 0 24px; }
.sheet-providers { display: grid; gap: 12px; }
.sheet-providers .prov { width: 100%; justify-content: flex-start; gap: 12px; padding-block: 1.05em; text-transform: none; letter-spacing: .01em; font-size: .95rem; font-weight: 500; }
.sheet-legal { font-size: .8rem; color: var(--ink-3); margin: 20px 0 0; }
.sheet-legal a { border-bottom: 1px solid var(--line-2); }

/* =========================================================================
   Order status + account (F6 / F9)
   ========================================================================= */
.track { display: grid; gap: 0; margin-top: 8px; }
.track-step { display: grid; grid-template-columns: 26px 1fr; gap: 16px; }
.track-dot { position: relative; display: grid; justify-items: center; }
.track-dot i { width: 13px; height: 13px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--sand-2); margin-top: 6px; display: block; }
.track-dot span { flex: 1; width: 1px; background: var(--line); display: block; height: 100%; min-height: 26px; }
.track-step:last-child .track-dot span { display: none; }
.track-step.done .track-dot i { background: var(--green-deep); border-color: var(--green-deep); }
.track-step.cur .track-dot i { background: var(--clay); border-color: var(--clay); box-shadow: 0 0 0 4px color-mix(in oklab, var(--clay) 18%, transparent); }
.track-body { padding-bottom: 24px; }
.track-body h4 { font-family: var(--serif); font-size: 1.2rem; margin: 0; color: var(--ink-3); }
.track-step.done .track-body h4, .track-step.cur .track-body h4 { color: var(--ink); }
.track-body p { font-size: .88rem; color: var(--ink-3); margin: 4px 0 0; }
.order-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.order-row:first-child { border-top: 1px solid var(--line); }
.or-ref { font-family: var(--serif); font-size: 1.3rem; }
.or-meta { font-size: .88rem; color: var(--ink-3); margin-top: 4px; }
.or-right { text-align: right; display: grid; gap: 8px; justify-items: end; }
.pill { font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-2); }
.pill.cur { border-color: var(--clay); color: var(--clay); }
.pill.done { border-color: var(--green-deep); color: var(--green-deep); }
.acct-sec + .acct-sec { margin-top: clamp(44px, 5vw, 68px); padding-top: clamp(36px, 4vw, 52px); border-top: 1px solid var(--line); }
.acct-sec h2 { font-size: clamp(1.4rem, 2vw, 1.8rem); margin: 0 0 6px; scroll-margin-top: 150px; }
.acct-sec .lede { color: var(--ink-2); margin: 0 0 22px; max-width: 54ch; }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 32px; }
.detail { border: 1px solid var(--line); background: var(--sand-2); border-radius: var(--r); padding: 18px 20px; }
.detail .dl { font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.detail .dv { margin-top: 6px; color: var(--ink); }
.mini-list { display: grid; gap: 0; }
.mini-row { display: flex; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mini-row:first-child { border-top: 1px solid var(--line); }
.mini-row .mr-name { flex: 1; }
.mini-row .mr-name b { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; display: block; }
.mini-row .mr-name span { font-size: .82rem; color: var(--ink-3); }
.qty-cap { font-size: .8rem; color: var(--ink-3); margin-top: 10px; }
@media (max-width: 720px) { .detail-grid { grid-template-columns: 1fr; } .order-row { grid-template-columns: 1fr; } .or-right { justify-items: start; text-align: left; } }
