/* Copperpot public site: masthead, landing page, membership page, colophon. */

:root {
  color-scheme: light dark;

  --porcelain: #f8f8f4;
  --porcelain-raised: #ffffff;
  --porcelain-sunk: #eeefe8;
  --soapstone: #1a2320;
  --soapstone-deep: #121917;
  --ink: #191f1c;
  --ink-soft: #5f6a63;
  --rule: #dde0d6;
  --saffron: #e6a32c;
  --paprika: #c4462a;
  --pandan: #6f8f3f;

  --page: var(--porcelain);
  --surface: var(--porcelain-raised);
  --surface-sunk: var(--porcelain-sunk);
  --text: var(--ink);
  --muted: var(--ink-soft);
  --line: var(--rule);
  --accent: var(--paprika);
  --lift: 0 1.4rem 2.6rem rgba(25, 31, 28, .09);
  --lift-strong: 0 2rem 4rem rgba(25, 31, 28, .16);

  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Songti SC",
    "Noto Serif CJK SC", "Source Han Serif SC", Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", ui-sans-serif, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, "DejaVu Sans Mono", Consolas, monospace;

  --gutter: clamp(1.15rem, 5vw, 3rem);
  --measure: 74rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #101613;
    --surface: #18211d;
    --surface-sunk: #131a17;
    --text: #eaeee6;
    --muted: #9aa79d;
    --line: #2a3530;
    --accent: #e2795c;
    --lift: 0 1.4rem 2.6rem rgba(0, 0, 0, .38);
    --lift-strong: 0 2rem 4rem rgba(0, 0, 0, .5);
  }
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  background: var(--page);
}

body {
  background: var(--page);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.1;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; text-underline-offset: .2em; }

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

:where(a, button, input, summary):focus-visible {
  border-radius: .35rem;
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}

.shell {
  margin: 0 auto;
  max-width: var(--measure);
  padding-inline: var(--gutter);
  width: 100%;
}

.skip-link {
  background: var(--surface);
  border-radius: .5rem;
  left: 1rem;
  padding: .6rem .85rem;
  position: fixed;
  top: -5rem;
  z-index: 20;
}
.skip-link:focus { top: 1rem; }

/* Utility type ------------------------------------------------------------ */

.eyebrow {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  margin: 0;
  text-transform: uppercase;
}

.meta {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lede {
  color: var(--muted);
  font-size: 1.075rem;
  max-width: 34em;
}

/* Buttons ----------------------------------------------------------------- */

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  gap: .5rem;
  justify-content: center;
  min-height: 2.9rem;
  padding: .6rem 1.35rem;
  text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--saffron); color: #221a06; }
.btn--primary:hover { background: #f0b23f; }

.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { background: var(--surface); border-color: var(--muted); }

.btn--onDark { border-color: rgba(248, 248, 244, .28); color: #f4f6f0; }
.btn--onDark:hover { background: rgba(248, 248, 244, .1); border-color: rgba(248, 248, 244, .55); }

/* Masthead ---------------------------------------------------------------- */

.masthead {
  background: var(--page);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.masthead__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  min-height: 4.25rem;
  padding-block: .75rem;
}

.wordmark {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-family: var(--display);
  font-size: 1.3rem;
  gap: .55rem;
  letter-spacing: -.02em;
  text-decoration: none;
}
.wordmark__mark { color: var(--saffron); height: 1.6rem; width: 1.6rem; }

.masthead__nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.35rem;
}

.masthead__link {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
  padding-block: .35rem;
  text-decoration: none;
}
.masthead__link:hover { color: var(--text); }
.masthead__link[aria-current="page"] { color: var(--text); }

.masthead__lang {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  padding: .35rem 0;
  text-transform: uppercase;
}
.masthead__lang:hover { color: var(--text); }
.masthead__globe { flex-shrink: 0; }
.masthead form { display: contents; }

/* Flash messages ---------------------------------------------------------- */

.flashes { list-style: none; margin: 1rem auto 0; max-width: var(--measure); padding-inline: var(--gutter); }
.flashes li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--saffron);
  border-radius: .5rem;
  margin-bottom: .5rem;
  padding: .7rem .9rem;
}

/* Hero -------------------------------------------------------------------- */

.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 3.5rem); }

.hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 62rem) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
}

.hero__title {
  font-size: clamp(2.4rem, 1.5rem + 3.4vw, 3.5rem);
  margin-block: 1.1rem .9rem;
}
.hero__title em { color: var(--paprika); font-style: normal; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

.hero__note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .07em;
  margin-top: 1.7rem;
  padding-top: .9rem;
  text-transform: uppercase;
}

/* Signature: the top-down prep station ------------------------------------ */

.station { margin: 0; }

.station__counter {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(120% 90% at 30% 12%, rgba(230, 163, 44, .13), transparent 62%),
    radial-gradient(90% 80% at 88% 92%, rgba(111, 143, 63, .14), transparent 60%),
    linear-gradient(168deg, #222d29, var(--soapstone) 45%, var(--soapstone-deep));
  border: 1px solid rgba(248, 248, 244, .07);
  border-radius: 1.25rem;
  box-shadow: var(--lift-strong);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(9, 1fr);
  overflow: hidden;
  padding: 2%;
  position: relative;
}

.station__counter::after {
  background: radial-gradient(80% 60% at 50% 0%, rgba(255, 244, 214, .12), transparent 70%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.bowl {
  align-self: center;
  animation: bowl-settle .55s cubic-bezier(.2, .8, .3, 1) both;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #f4f2ea, #d9d8ce);
  border-radius: 50%;
  box-shadow: 0 1.1rem 1.8rem rgba(0, 0, 0, .45);
  justify-self: center;
  position: relative;
  width: 100%;
}

.bowl::before {
  background:
    radial-gradient(circle at 36% 30%, color-mix(in srgb, var(--food) 72%, #fff 28%), var(--food) 58%),
    var(--food);
  border-radius: 50%;
  box-shadow: inset 0 .35rem .7rem rgba(0, 0, 0, .32);
  content: "";
  inset: 11%;
  position: absolute;
}

.bowl::after {
  background-image:
    radial-gradient(circle, var(--speck) 42%, transparent 43%),
    radial-gradient(circle, var(--speck) 42%, transparent 43%),
    radial-gradient(circle, var(--speck) 42%, transparent 43%);
  background-position: 32% 38%, 62% 30%, 48% 66%;
  background-repeat: no-repeat;
  background-size: 14% 14%, 9% 9%, 11% 11%;
  border-radius: 50%;
  content: "";
  inset: 11%;
  opacity: .8;
  position: absolute;
}

.bowl--1 { --food: #8f2f1c; --speck: rgba(255, 226, 178, .55); grid-area: 3 / 2 / span 4 / span 4; }
.bowl--2 { --food: #e6a32c; --speck: rgba(120, 62, 8, .45); grid-area: 2 / 7 / span 3 / span 3; }
.bowl--3 { --food: #6f8f3f; --speck: rgba(240, 247, 226, .5); grid-area: 6 / 9 / span 3 / span 3; }
.bowl--4 { --food: #c4462a; --speck: rgba(46, 12, 4, .4); grid-area: 6 / 6 / span 2 / span 2; }
.bowl--5 { --food: #7d5b34; --speck: rgba(255, 236, 205, .4); grid-area: 7 / 3 / span 2 / span 2; }
.bowl--6 { --food: #efe6d2; --speck: rgba(90, 70, 40, .35); grid-area: 1 / 4 / span 2 / span 2; }
.bowl--7 { --food: #2f3a3a; --speck: rgba(226, 236, 232, .38); grid-area: 1 / 10 / span 2 / span 2; }

.bowl--1 { animation-delay: .04s; }
.bowl--2 { animation-delay: .1s; }
.bowl--3 { animation-delay: .16s; }
.bowl--4 { animation-delay: .22s; }
.bowl--5 { animation-delay: .28s; }
.bowl--6 { animation-delay: .34s; }
.bowl--7 { animation-delay: .4s; }

@keyframes bowl-settle {
  from { opacity: 0; transform: translateY(.9rem) scale(.9); }
  to { opacity: 1; transform: none; }
}

.bowl__tag {
  color: rgba(240, 244, 236, .82);
  font-family: var(--mono);
  font-size: clamp(.56rem, .4rem + .45vw, .72rem);
  left: 50%;
  letter-spacing: .09em;
  line-height: 1.35;
  padding-top: .5rem;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 100%;
  transform: translateX(-50%);
  width: 190%;
}

.bowl__tag::before {
  background: rgba(240, 244, 236, .38);
  content: "";
  height: .4rem;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
}

/* The last bowl sits against the right edge, so its tag hangs left instead. */
.bowl--7 .bowl__tag { left: auto; right: 0; text-align: right; transform: none; width: 200%; }
.bowl--7 .bowl__tag::before { left: auto; right: 25%; }

.bowl__tag b { color: #f6f8f2; display: block; font-weight: 600; }

.station__caption {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  margin-top: 1rem;
  text-transform: uppercase;
}

@media (max-width: 40rem) {
  .bowl__tag { display: none; }
}

/* The masthead wraps to two rows on a phone; sticking it there costs a sixth
   of the screen, so it scrolls away instead. */
@media (max-width: 48rem) {
  .masthead { position: static; }
}

/* Ledger (counts) --------------------------------------------------------- */

.ledger {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 48rem) {
  .ledger { grid-template-columns: repeat(4, 1fr); }
}

.ledger__cell { padding: 1.5rem 0 1.6rem; position: relative; }
.ledger__cell + .ledger__cell { padding-left: clamp(.9rem, 3vw, 2rem); }
.ledger__cell + .ledger__cell::before {
  background: var(--line);
  content: "";
  inset-block: 1.5rem;
  left: 0;
  position: absolute;
  width: 1px;
}
.ledger__value { font-family: var(--display); font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.7rem); line-height: 1; }
.ledger__label { color: var(--muted); font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; margin-top: .55rem; text-transform: uppercase; }

/* Section scaffolding ----------------------------------------------------- */

.band { padding-block: clamp(3rem, 7vw, 5.5rem); }
.band--sunk { background: var(--surface-sunk); }
.band--dark { background: var(--soapstone); color: #eef1ea; }
.band--dark .lede, .band--dark .eyebrow, .band--dark .meta { color: rgba(238, 241, 234, .62); }

.band__head {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  margin-bottom: clamp(1.6rem, 4vw, 2.5rem);
}
.band__title { font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem); margin-top: .7rem; }
.band__link { color: var(--accent); font-size: .92rem; font-weight: 600; white-space: nowrap; }

/* Cuisine chips ----------------------------------------------------------- */

.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.chips li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  padding: .4rem .85rem;
}
.chips li:last-child { background: none; border-style: dashed; color: var(--muted); }

/* Recipe cards ------------------------------------------------------------ */

.cards {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  /* Six dishes want three across, not four with two stragglers. */
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { box-shadow: var(--lift); transform: translateY(-3px); }

.plate {
  align-items: center;
  aspect-ratio: 5 / 4;
  background: linear-gradient(165deg, #232e2a, #131a18);
  display: flex;
  justify-content: center;
  position: relative;
}

.plate::before {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #f6f5ee, #dcdbd1);
  border-radius: 50%;
  box-shadow: 0 .9rem 1.6rem rgba(0, 0, 0, .4);
  content: "";
  height: 78%;
}

.plate::after {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 38% 32%, color-mix(in srgb, var(--food) 70%, #fff 30%), var(--food) 62%),
    var(--food);
  border-radius: 50%;
  box-shadow: inset 0 .3rem .6rem rgba(0, 0, 0, .28);
  content: "";
  height: 54%;
  position: absolute;
}

.plate--redbraise { --food: #8f2f1c; }
.plate--cacio { --food: #e8d79b; }
.plate--birria { --food: #b5391f; }
.plate--biryani { --food: #dfa73a; }
.plate--misocod { --food: #c9b285; }
.plate--tatin { --food: #b96a22; }

.plate__badge {
  background: rgba(18, 25, 23, .78);
  border-radius: 999px;
  color: #f2f5ee;
  font-family: var(--mono);
  font-size: .64rem;
  left: .85rem;
  letter-spacing: .1em;
  padding: .3rem .6rem;
  position: absolute;
  text-transform: uppercase;
  top: .85rem;
}

.card__body { display: flex; flex-direction: column; gap: .45rem; padding: 1.05rem 1.15rem 1.25rem; }
.card__title { font-family: var(--display); font-size: 1.2rem; line-height: 1.25; }
.card__native { color: var(--muted); font-size: .88rem; }
.card__meta { border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; margin-top: .4rem; padding-top: .7rem; text-transform: uppercase; }

.locked {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-family: var(--mono);
  font-size: .68rem;
  gap: .4rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.locked svg { height: .85rem; width: .85rem; }

/* Video band -------------------------------------------------------------- */

.reels { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }

.reel {
  background: rgba(248, 248, 244, .04);
  border: 1px solid rgba(248, 248, 244, .1);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.reel__frame {
  align-items: center;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(70% 90% at 30% 20%, rgba(230, 163, 44, .22), transparent 60%),
    linear-gradient(150deg, #26312c, #101614);
  display: flex;
  justify-content: center;
  position: relative;
}

.reel__play {
  align-items: center;
  border: 1px solid rgba(248, 248, 244, .5);
  border-radius: 50%;
  display: flex;
  height: 3.1rem;
  justify-content: center;
  width: 3.1rem;
}
.reel__play::before {
  border-bottom: .48rem solid transparent;
  border-left: .8rem solid #f4f6f0;
  border-top: .48rem solid transparent;
  content: "";
  margin-left: .2rem;
}

.reel__runtime {
  background: rgba(10, 14, 13, .74);
  border-radius: .35rem;
  bottom: .7rem;
  color: #eef1ea;
  font-family: var(--mono);
  font-size: .68rem;
  padding: .2rem .45rem;
  position: absolute;
  right: .7rem;
}

.reel__body { display: flex; flex-direction: column; gap: .7rem; padding: 1rem 1.15rem 1.2rem; }
.reel__title { font-family: var(--display); font-size: 1.15rem; line-height: 1.25; }

.chapters { display: grid; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.chapters li { color: rgba(238, 241, 234, .68); display: grid; font-size: .87rem; gap: .6rem; grid-template-columns: 3.4rem 1fr; }
.chapters time { color: var(--saffron); font-family: var(--mono); font-size: .74rem; }

/* Membership teaser + plans ---------------------------------------------- */

.offer {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 56rem) { .offer { grid-template-columns: 1.1fr .9fr; } }

.price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-family: var(--display);
}
.price__amount { font-size: clamp(3rem, 2rem + 4vw, 4.4rem); letter-spacing: -.03em; line-height: 1; }
.price__unit { color: var(--muted); font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }

.includes { display: grid; gap: .7rem; list-style: none; margin: 1.5rem 0 0; padding: 0; }
.includes li { display: grid; gap: .7rem; grid-template-columns: 1.1rem 1fr; }
.includes svg { color: var(--pandan); height: 1.1rem; margin-top: .28rem; width: 1.1rem; }

.plans { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr)); }

.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.3rem, 3vw, 1.9rem);
}
.plan--featured {
  background: var(--soapstone);
  border-color: var(--soapstone);
  color: #eef1ea;
  position: relative;
}
.plan--featured .price__unit,
.plan--featured .plan__note { color: rgba(238, 241, 234, .66); }
.plan--featured .includes svg { color: var(--saffron); }

@media (prefers-color-scheme: dark) {
  /* The featured card is dark on a dark page, so the ring carries it instead. */
  .plan--featured {
    background: #1f2a25;
    border-color: color-mix(in srgb, var(--saffron) 45%, transparent);
  }
}

.plan__flag {
  background: var(--saffron);
  border-radius: 999px;
  color: #221a06;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .1em;
  padding: .25rem .6rem;
  position: absolute;
  right: 1.2rem;
  text-transform: uppercase;
  top: 1.2rem;
}

.plan .price { display: grid; gap: .3rem; justify-items: start; }
.plan__name { font-family: var(--display); font-size: 1.35rem; }
.plan__note { color: var(--muted); font-size: .9rem; }
.plan .btn { margin-top: auto; }
.plan .includes { margin-top: .3rem; }
.plan .includes li { font-size: .93rem; }

/* Voice / quote ----------------------------------------------------------- */

.quote { margin: 0; max-width: 44rem; }
.quote blockquote { font-family: var(--display); font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.85rem); line-height: 1.35; margin: 0; }
.quote figcaption { color: var(--muted); font-family: var(--mono); font-size: .7rem; letter-spacing: .09em; margin-top: 1.1rem; text-transform: uppercase; }

/* Questions --------------------------------------------------------------- */

.questions { border-top: 1px solid var(--line); margin-top: clamp(2rem, 5vw, 3rem); }
.questions details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.questions summary { cursor: pointer; font-family: var(--display); font-size: 1.15rem; list-style: none; }
.questions summary::-webkit-details-marker { display: none; }
.questions summary::after { color: var(--muted); content: "+"; float: right; font-family: var(--mono); }
.questions details[open] summary::after { content: "\2212"; }
.questions details:last-of-type { border-bottom: 0; }
.questions p { color: var(--muted); margin-top: .7rem; max-width: 52em; }

/* Colophon ---------------------------------------------------------------- */

.colophon { background: var(--soapstone-deep); color: rgba(238, 241, 234, .72); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.colophon__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); }
.colophon h2 { color: #f4f6f0; font-family: var(--mono); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.colophon ul { display: grid; gap: .5rem; list-style: none; margin: .9rem 0 0; padding: 0; }
.colophon a { font-size: .92rem; text-decoration: none; }
.colophon a:hover { color: #fff; text-decoration: underline; }
.colophon__brand .wordmark { color: #f4f6f0; }
.colophon__fine { border-top: 1px solid rgba(248, 248, 244, .12); font-family: var(--mono); font-size: .66rem; letter-spacing: .08em; margin-top: 2.5rem; padding-top: 1.4rem; text-transform: uppercase; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Page-level pieces used by the membership page --------------------------- */

.band__aside { max-width: 29rem; }

.page-head { border-bottom: 1px solid var(--line); margin-bottom: clamp(2rem, 5vw, 3rem); padding-bottom: clamp(1.6rem, 4vw, 2.4rem); }
.page-head .band__title { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.3rem); margin-block: .8rem .9rem; }

.fine-print { color: var(--muted); font-family: var(--mono); font-size: .68rem; letter-spacing: .07em; margin-top: 1.4rem; text-transform: uppercase; }

.question-head { border: 0; font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); padding-bottom: 1.1rem; }

.closing { border-top: 1px solid var(--line); margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: clamp(2rem, 5vw, 3rem); }
.closing .band__title { margin-bottom: .8rem; }

.colophon__blurb { font-size: .92rem; margin-top: .9rem; max-width: 22rem; }

.masthead__inner--language-only,
.masthead__inner--language-only .masthead__nav {
  justify-content: flex-end;
}
