/* ==========================================================================
   Lucky Oud v2 — house stylesheet

   Written mobile-first: the base rules are the phone, and every media query
   is min-width. ~85–90% of this site's traffic will arrive from the Instagram
   bio link on a phone, so the phone is the design, not the fallback.
   ========================================================================== */

:root {
  /* Neutrals are pushed cool and grey on purpose: the only warm colour on any
     page should be the colour of the oil. */
  --paper:      #FAF9F7;
  --paper-2:    #F1EFEB;
  --paper-3:    #E7E4DE;
  --night:      #151310;   /* warm-shifted black for the lamplit bands */
  --night-2:    #201C17;

  --ink:        #111111;
  --ink-2:      #56534D;
  --ink-3:      #8C8881;
  --on-night:   #F2EEE7;
  --on-night-2: #A9A199;

  --rule:       rgba(17, 17, 17, 0.13);
  --rule-2:     rgba(17, 17, 17, 0.07);
  --rule-night: rgba(242, 238, 231, 0.16);

  /* Overridden per product page from the perfume's own colour. */
  --accent:     #8A5A2B;

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --hand:  "Nothing You Could Do", cursive;

  --gutter: 20px;
  --section: 64px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 700px)  { :root { --gutter: 40px; --section: 96px; } }
@media (min-width: 1100px) { :root { --gutter: 56px; --section: 128px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ----------------------------------------------------------------- type -- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; margin: 0; letter-spacing: -0.015em; }
.d1 { font-size: clamp(2.6rem, 11vw, 5.6rem); }
.d2 { font-size: clamp(1.95rem, 6.5vw, 3.3rem); }
.d3 { font-size: clamp(1.4rem, 4.4vw, 2rem); }
em { font-style: italic; }

/* Monospace is reserved for labels, navigation and specimen data. It is what
   makes the provenance claims read as a record rather than as copy. */
.label {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1.4em;
}
.label--accent { color: var(--accent); }
.lede { font-size: clamp(1.08rem, 3.4vw, 1.3rem); color: var(--ink-2); max-width: 56ch; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
.sig { font-family: var(--hand); color: var(--accent); font-size: 1.5rem; line-height: 1.2; }

/* --------------------------------------------------------------- layout -- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
/* 760px of text PLUS the gutter, so narrow sections keep their side margins.
   (Setting padding-inline:0 on these was what pushed text to the screen edge.) */
.narrow { max-width: calc(760px + var(--gutter) * 2); }
.section { padding-block: var(--section); }
.section--sm { padding-block: calc(var(--section) * 0.62); }
.night { background: var(--night); color: var(--on-night); }
.night .label { color: var(--on-night-2); }
.night .lede { color: var(--on-night-2); }
.paper-2 { background: var(--paper-2); }

.head { margin-bottom: 32px; }
@media (min-width: 700px) {
  .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 48px; }
}

/* --------------------------------------------------------------- header -- */
.hdr {
  position: sticky; top: 0; z-index: 80;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-2);
}
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; padding-block: 8px; }
.brand svg { width: 20px; height: 26px; flex: none; }
.brand b { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; letter-spacing: 0.01em; }

.nav { display: none; }
.nav a, .navm a {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-2);
}
@media (min-width: 900px) {
  .hdr__in { min-height: 72px; }
  .nav { display: flex; align-items: center; gap: 26px; }
  .nav a { position: relative; padding-block: 4px; }
  .nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
    background: var(--accent); transition: right .4s var(--ease);
  }
  .nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
  .nav a[aria-current="page"] { color: var(--ink); }
  .burger { display: none !important; }
}
.burger { width: 40px; height: 40px; margin-right: -8px; position: relative; }
.burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 23px; }
body.open .burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.open .burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.navm {
  position: fixed; inset: 60px 0 auto; background: var(--paper);
  border-bottom: 1px solid var(--rule); padding: 4px var(--gutter) 28px; z-index: 79;
  clip-path: inset(0 0 100% 0); transition: clip-path .42s var(--ease);
}
body.open .navm { clip-path: inset(0 0 0 0); }
.navm a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--rule-2);
  font-size: 0.78rem; letter-spacing: 0.18em; color: var(--ink);
}
.navm a:last-child { border-bottom: 0; }
@media (min-width: 900px) { .navm { display: none; } }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--out { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--out:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--full { width: 100%; }
.night .btn { background: var(--on-night); border-color: var(--on-night); color: var(--night); }
.night .btn--out { background: transparent; color: var(--on-night); border-color: var(--rule-night); }
.btns { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 560px) { .btns { flex-direction: row; flex-wrap: wrap; } }

.arrow {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
  /* padding, not just text height — these were 19-23px tall and hard to hit */
  padding: 9px 0 7px; min-height: 40px; align-items: center;
  display: inline-flex; gap: 8px; transition: gap .35s var(--ease), border-color .35s var(--ease);
}
.arrow:hover { gap: 15px; border-color: var(--accent); color: var(--accent); }

/* ----------------------------------------------------------------- hero -- */
/* First screen has one job: who this is, what it smells of, and one next step. */
.hero { padding-block: 28px var(--section); }
/* On a phone the copy and the first call to action must be on screen without a
   scroll, so the bottle is pushed below them and capped in height. */
.hero__in { display: flex; flex-direction: column; }
.hero__copy { order: 1; }
.hero__ph {
  order: 2; margin: 30px 0 0; aspect-ratio: 4 / 5; max-height: 52vh;
  background: var(--paper-2); display: grid; place-items: center; overflow: hidden;
}
.hero__ph svg, .hero__ph img { height: 84%; width: auto; }
.hero h1 { margin-bottom: 14px; }
.hero__sig { margin: 18px 0 22px; transform: rotate(-1.4deg); transform-origin: left; }
.hero__note {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 20px; line-height: 2;
}
@media (min-width: 860px) {
  .hero { padding-block: 60px var(--section); }
  .hero__in { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
  .hero__ph { order: 2; margin: 0; max-height: none; }
  .hero__copy { order: 1; }
}

/* --------------------------------------------------------- discovery cta -- */
/* The research is unambiguous: samples are the conversion event. This block
   outranks every full bottle on the site. */
.disc { border: 1px solid var(--rule); padding: 26px 22px; background: var(--paper); }
.night .disc { border-color: var(--rule-night); background: transparent; }
.disc__price { font-family: var(--serif); font-size: 2.1rem; line-height: 1; margin: 4px 0 0; }
.disc__price small { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--ink-3); margin-left: 8px; }
.night .disc__price small { color: var(--on-night-2); }
.disc__credit {
  font-family: var(--mono); font-size: 0.74rem; line-height: 1.7; letter-spacing: 0.04em;
  color: var(--accent); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rule-2);
}
.night .disc__credit { border-color: var(--rule-night); }
@media (min-width: 760px) {
  .disc { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; padding: 34px 32px; }
  .disc__side { text-align: right; }
}

/* --------------------------------------------------------------- finder -- */
.finder { border: 1px solid var(--rule); padding: 24px 20px; }
.finder__q { margin-bottom: 22px; }
.finder__q:last-of-type { margin-bottom: 0; }
.finder__q > p {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px;
}
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt {
  padding: 10px 15px; border: 1px solid var(--rule); font-size: 0.92rem;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.opt:hover { border-color: var(--ink-2); }
.opt[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.finder__out { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--rule); }
.finder__out[hidden] { display: none; }
@media (min-width: 860px) { .finder { padding: 34px 32px; } }

/* ---------------------------------------------------------------- cards -- */
.grid { display: grid; gap: 30px 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 560px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
@media (min-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1150px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card { display: flex; flex-direction: column; }
.card__ph {
  position: relative; aspect-ratio: 4 / 5; background: var(--paper-2);
  display: grid; place-items: center; overflow: hidden;
}
.card__ph svg, .card__ph img { height: 80%; width: auto; transition: transform .9s var(--ease); }
.card:hover .card__ph svg, .card:hover .card__ph img { transform: scale(1.05); }
.card__n {
  position: absolute; top: 10px; left: 10px; font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.08em; color: var(--ink-3);
}
.card__b { padding-top: 13px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.card__t { font-size: 1.16rem; line-height: 1.25; }
.card__s { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.card__d { font-size: 0.88rem; color: var(--ink-2); line-height: 1.5; margin-top: 6px; flex: 1; }
.card__f {
  margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--rule-2);
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.card__p { font-size: 1.02rem; }
.card__p small { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3); margin-left: 5px; }

/* -------------------------------------------------------------- filters -- */
/* Phrased as intents, not as the maker's taxonomy. */
/* These used to scroll horizontally with the scrollbar hidden, which buried
   five of the nine filters off-screen on a phone. They wrap now. */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.chips__count {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3); margin: 0 0 22px;
}
.chip {
  flex: none; padding: 11px 15px; border: 1px solid var(--rule); white-space: nowrap;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2); transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.chip:hover { border-color: var(--ink-2); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chips--sub .chip { border-style: dashed; }

/* ------------------------------------------------------------- specimen -- */
/* The whole trust argument, set as a record rather than as prose. */
.spec { border-top: 1px solid var(--rule); }
.night .spec { border-color: var(--rule-night); }
.spec__row {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--rule-2);
}
.night .spec__row { border-color: var(--rule-night); }
.spec__k {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.night .spec__k { color: var(--on-night-2); }
.spec__v { font-family: var(--mono); font-size: 0.86rem; line-height: 1.55; color: var(--ink); }
.night .spec__v { color: var(--on-night); }
.spec__note {
  font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3);
  margin-top: 14px; line-height: 1.75; max-width: 62ch;
}
.spec__note a { display: inline-block; padding-block: 8px; }
@media (min-width: 700px) { .spec__row { grid-template-columns: 200px 1fr; } }

/* --------------------------------------------------------------- notes --- */
.notes { display: grid; gap: 1px; background: var(--rule-2); border: 1px solid var(--rule-2); margin: 24px 0; }
.notes div { background: var(--paper); padding: 14px 16px; }
.notes dt {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 5px;
}
.notes dd { margin: 0; font-size: 0.95rem; color: var(--ink-2); }
@media (min-width: 620px) { .notes { grid-template-columns: repeat(3, 1fr); } }

/* --------------------------------------------------------------- quotes -- */
.quote { font-size: clamp(1.15rem, 4vw, 1.55rem); line-height: 1.45; font-style: italic; margin: 0; }
.quote + cite {
  display: block; margin-top: 14px; font-style: normal; font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
}
.night .quote + cite { color: var(--on-night-2); }
.quotes { display: grid; gap: 34px; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.quotes blockquote { font-size: 1.02rem; line-height: 1.55; font-style: italic; margin: 0; }

/* ------------------------------------------------------------------ pdp -- */
.pdp__hero { background: var(--night); color: var(--on-night); }
/* A lamp behind the bottle, tinted with that perfume's own colour — without it
   the black cap disappears into the black band. */
.pdp__ph {
  aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(58% 48% at 50% 46%,
    color-mix(in srgb, var(--accent) 34%, transparent), transparent 72%);
}
.pdp__ph svg, .pdp__ph img { height: 82%; width: auto; }
.pdp__crumb {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--on-night-2); margin-bottom: 14px;
}
/* The breadcrumb link was a 15px-tall tap target. */
.pdp__crumb a { display: inline-block; padding: 7px 0; }
.pdp__price { font-size: 1.9rem; margin: 0; }
.pdp__price small { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.1em; color: var(--on-night-2); margin-left: 8px; }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 20px; }
.size {
  padding: 11px 17px; border: 1px solid var(--rule-night); text-align: left; min-width: 112px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.size b { display: block; font-family: var(--mono); font-weight: 400; font-size: 0.82rem; letter-spacing: 0.06em; }
.size span { font-family: var(--mono); font-size: 0.74rem; color: var(--on-night-2); }
.size[aria-pressed="true"] { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 22%, transparent); }
.reassure {
  font-family: var(--mono); font-size: 0.72rem; line-height: 1.85; letter-spacing: 0.02em; max-width: 48ch;
  color: var(--on-night-2); margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rule-night);
}
@media (min-width: 900px) {
  .pdp__in { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .pdp__ph { aspect-ratio: 4 / 5; }
}

/* Phone buyers expect the action to be reachable with a thumb. */
/* Reserve room for the fixed bar so it stops covering the end of the footer. */
body:has(.bar) { padding-bottom: 84px; }
@media (min-width: 900px) { body:has(.bar) { padding-bottom: 0; } }

.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; gap: 12px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px); border-top: 1px solid var(--rule);
  transform: translateY(105%); transition: transform .4s var(--ease);
}
.bar.on { transform: none; }
.bar__p { font-size: 1.05rem; flex: none; }
.bar__p small { display: block; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.bar .btn { flex: 1; padding-block: 13px; }
@media (min-width: 900px) { .bar { display: none; } }

/* ---------------------------------------------------------------- steps -- */
.steps { counter-reset: s; }
.stepi { padding: 22px 0; border-bottom: 1px solid var(--rule-2); }
.stepi:first-child { border-top: 1px solid var(--rule-2); }
.night .stepi, .night .stepi:first-child { border-color: var(--rule-night); }
.stepi__n {
  counter-increment: s; font-family: var(--mono); font-size: 0.74rem;
  letter-spacing: 0.14em; color: var(--accent); margin-bottom: 8px; display: block;
}
.stepi__n::before { content: counter(s, decimal-leading-zero); }
.stepi h3 { font-size: 1.28rem; margin-bottom: 8px; }
.stepi p { color: var(--ink-2); max-width: 64ch; font-size: 0.97rem; }
.night .stepi p { color: var(--on-night-2); }
@media (min-width: 760px) {
  .stepi { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 30px 0; align-items: start; }
  .stepi__n { margin: 0; }
}

/* ----------------------------------------------------------------- form -- */
.f { display: block; margin-bottom: 20px; }
.f > span {
  display: block; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px;
}
.f input, .f textarea, .f select {
  width: 100%; padding: 12px 0; background: transparent; color: var(--ink);
  border: 0; border-bottom: 1px solid var(--rule); border-radius: 0;
  font-family: var(--serif); font-size: 1rem;
}
.f input:focus, .f textarea:focus, .f select:focus { outline: none; border-color: var(--accent); }
.f textarea { resize: vertical; min-height: 104px; }
.fnote { font-family: var(--mono); font-size: 0.72rem; line-height: 1.8; color: var(--ink-3); margin-top: 14px; max-width: 56ch; }

/* --------------------------------------------------------------- footer -- */
.ftr { background: var(--night); color: var(--on-night); }
.ftr__g { display: grid; gap: 30px; padding-block: 48px; grid-template-columns: repeat(2, 1fr); }
.ftr__g > div:first-child { grid-column: 1 / -1; }
@media (min-width: 860px) { .ftr__g { grid-template-columns: 1.6fr repeat(3, 0.8fr); gap: 40px; padding-block: 72px; }
  .ftr__g > div:first-child { grid-column: auto; } }
.ftr h4 {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-night-2); margin-bottom: 14px; font-weight: 400;
}
.ftr__l { display: grid; gap: 2px; font-size: 0.95rem; color: var(--on-night); }
.ftr__l a { display: block; padding-block: 9px; }
.ftr__l a:hover { color: var(--accent); }
.ftr__bar {
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between;
  padding-block: 18px; border-top: 1px solid var(--rule-night);
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--on-night-2);
}

/* -------------------------------------------------------------- reveals -- */
[data-r] { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-r].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-r] { opacity: 1; transform: none; transition: none; } }

.empty { padding: 50px 0; font-family: var(--mono); font-size: 0.8rem; color: var(--ink-3); letter-spacing: 0.08em; }


/* ======================================================================
   Added in the content revision
   ====================================================================== */

/* The perfumer's own words about a perfume. The personal voice is now
   concentrated here — at the point of sale — instead of spread over two
   pages of process writing. */
.pitch {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 26px 0 0;
}
.pitch p { font-size: 1.12rem; line-height: 1.6; font-style: italic; color: var(--ink); }
.pitch__by {
  display: flex; align-items: baseline; gap: 10px; margin-top: 14px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}
.pitch__by .sig { font-size: 1.3rem; }
.night .pitch p { color: var(--on-night); }

/* When to wear it — the buyer-facing content the site had none of. */
.wear-box {
  display: grid; gap: 1px; background: var(--rule-2);
  border: 1px solid var(--rule-2); margin: 26px 0 0;
}
.wear-box div { background: var(--paper); padding: 14px 16px; }
.wear-box dt {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 5px;
}
.wear-box dd { margin: 0; font-size: 0.95rem; color: var(--ink-2); }
@media (min-width: 620px) { .wear-box { grid-template-columns: repeat(2, 1fr); } }

/* Batch scarcity, stated plainly. It is true, so it may as well be visible. */
.scarce {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 14px;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--on-night-2);
}
.scarce::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
}
.card__scarce {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent); margin-top: 2px;
}

/* Restock list. Small batches sell out; without this every visitor who is
   not ready today is lost for good. */
.waitlist { border: 1px solid var(--rule-night); padding: 26px 22px; }
.waitlist__row { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.waitlist input {
  flex: 1; padding: 14px 0; background: transparent; color: var(--on-night);
  border: 0; border-bottom: 1px solid var(--rule-night); border-radius: 0;
  font-family: var(--serif); font-size: 1rem;
}
.waitlist input::placeholder { color: var(--on-night-2); }
.waitlist input:focus { outline: none; border-color: var(--accent); }
.waitlist__ok {
  font-family: var(--mono); font-size: 0.72rem; color: var(--accent);
  margin-top: 14px; line-height: 1.7;
}
@media (min-width: 620px) {
  .waitlist { padding: 34px 32px; }
  .waitlist__row { flex-direction: row; align-items: flex-end; gap: 16px; }
  .waitlist .btn { flex: none; }
}

/* A glimpse of the maker on the home page, instead of a whole page of it. */
.glimpse { display: grid; gap: 22px; align-items: center; }
@media (min-width: 820px) { .glimpse { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }
