/* showcase */
.shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) {
  .shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .shelf {
    grid-template-columns: 1fr;
  }
}
.shot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini {
  aspect-ratio: 4/3;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.25s;
}
.shot:hover .mini {
  transform: translateY(-4px);
}
.mini .bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 11px;
}
.mini .body {
  flex: 1;
  padding: 6px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}
.mini h4 {
  margin: 0;
  line-height: 1.05;
}
.mini p {
  margin: 0;
  font-size: 11px;
  opacity: 0.75;
}
.mini .cta {
  align-self: flex-start;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 99px;
}
.cap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}
.cap span {
  color: var(--muted);
}
.cap small {
  font: 11px var(--mono);
  color: var(--faint);
  white-space: nowrap;
}
/* each mini site gets its own look */
.m1 {
  background: #fff8ee;
  color: #2b1d12;
}
.m1 h4 {
  font: 400 26px var(--serif);
  color: #9a3b12;
}
.m1 .cta {
  background: #9a3b12;
  color: #fff;
}
.m2 {
  background: #111;
  color: #f2f2f2;
  background-image:
    linear-gradient(0deg, #000c, #0000 70%),
    radial-gradient(circle at 70% 30%, #6b5b4f, #1a1512);
}
.m2 h4 {
  font: italic 400 28px var(--serif);
  letter-spacing: 0.02em;
}
.m2 .cta {
  border: 1px solid #fff8;
}
.m3 {
  background: #eef6f4;
  color: #12332e;
}
.m3 h4 {
  font: 600 20px var(--sans);
  letter-spacing: -0.02em;
}
.m3 .cta {
  background: #1d7a6b;
  color: #fff;
}
.m4 {
  background: #f2ebff;
  color: #2a1650;
}
.m4 h4 {
  font: 600 22px var(--sans);
  letter-spacing: -0.03em;
}
.m4 .cta {
  background: #2a1650;
  color: #fff;
}
.m5 {
  background: #1b2a1e;
  color: #e6efd9;
}
.m5 h4 {
  font: 400 26px var(--serif);
}
.m5 .cta {
  background: #c9e27a;
  color: #1b2a1e;
}
.m6 {
  background: #ffe7d6;
  color: #3a1c0e;
}
.m6 h4 {
  font: 700 22px var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.m6 .cta {
  background: #e2551b;
  color: #fff;
}
/* apps get a flatter, "admin screen" look instead of a hero photo, since
   what they show is honestly a list/table, not a marketing page */
.m7 {
  background: #12201c;
  color: #e7f1ec;
}
.m7 h4 {
  font: 600 20px var(--sans);
  letter-spacing: -0.02em;
}
.m7 .cta {
  background: #3fd0c9;
  color: #0b1512;
}
.m8 {
  background: #1a1830;
  color: #ece7f7;
}
.m8 h4 {
  font: 600 20px var(--sans);
  letter-spacing: -0.02em;
}
.m8 .cta {
  background: #7b5cff;
  color: #fff;
}
.m9 {
  background: #241708;
  color: #f6e9d8;
}
.m9 h4 {
  font: 600 20px var(--sans);
  letter-spacing: -0.02em;
}
.m9 .cta {
  background: #ffb35c;
  color: #241708;
}

/* template base: each template sets its own tokens */
.tpl {
  --bg: #fff;
  --fg: #111;
  --soft: #f3f3f3;
  --acc: #111;
  --acc-fg: #fff;
  --line2: #0001;
  --hf: system-ui;
  --bf: system-ui;
  background: var(--bg);
  color: var(--fg);
  font: 15px/1.6 var(--bf);
  container-type: inline-size;
}
.tpl h1,
.tpl h2,
.tpl h3 {
  font-family: var(--hf);
  margin: 0;
  text-wrap: balance;
}
.tpl h2 {
  font-size: 30px;
  line-height: 1.1;
}
.tpl p {
  margin: 0;
}
.tpl a {
  cursor: pointer;
}
.tp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  flex-wrap: wrap;
}
.tp-nav nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.tp-logo {
  font-family: var(--hf);
  font-size: 20px;
  font-weight: 600;
}
.tp-btn {
  display: inline-block;
  background: var(--acc);
  color: var(--acc-fg);
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  font: 600 14px var(--bf);
  cursor: pointer;
}
.tp-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.tp-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.tp-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.tp-sec {
  padding: 44px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.tp-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}
.tp-form input,
.tp-form select {
  font: 15px var(--bf);
  padding: 10px 12px;
  border: 1px solid var(--line2);
  border-radius: 8px;
  background: var(--bg);
  color: var(--fg);
}
.tp-form .tp-btn {
  grid-column: 1/-1;
  justify-self: start;
}
.tp-form h3 {
  grid-column: 1/-1;
}
.tp-foot {
  padding: 24px 28px;
  font-size: 13px;
  opacity: 0.7;
  border-top: 1px solid var(--line2);
}
[class*="-ph"] span,
.tf-plate span,
.ph-img span,
.ph-grid span {
  font: 11px var(--mono);
  opacity: 0.55;
  letter-spacing: 0.05em;
}
@container (max-width:560px) {
  .tp-form {
    grid-template-columns: 1fr;
  }
  .tp-sec,
  .tp-nav {
    padding-inline: 18px;
  }
  .tpl h2 {
    font-size: 24px;
  }
}

/* 1 tiffin: warm cream, terracotta, split hero with a thali */
.t-tiffin {
  --bg: #fff8ee;
  --fg: #2b1d12;
  --soft: #f4e7d3;
  --acc: #9a3b12;
  --line2: #e3d2ba;
  --hf: "Young Serif", Georgia, serif;
  --bf: "Mukta", system-ui, sans-serif;
}
.t-tiffin .tp-logo {
  color: #9a3b12;
  font-weight: 400;
}
.tf-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 28px 48px;
}
.tf-hero h1 {
  font-size: clamp(34px, 5cqi, 54px);
  line-height: 1.02;
  margin: 10px 0 14px;
  color: #6e2a0c;
}
.tf-copy p {
  max-width: 44ch;
  margin-bottom: 20px;
}
.tf-plate {
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #e9e1d2 58%, #cfc3ae 60%, #e9e1d2 64%);
  position: relative;
  display: grid;
  place-items: end center;
  padding-bottom: 14%;
}
.tf-plate i {
  position: absolute;
  border-radius: 50%;
}
.tf-plate .k1 {
  width: 26%;
  height: 26%;
  left: 18%;
  top: 18%;
  background: radial-gradient(#e4a72e, #c8811a);
}
.tf-plate .k2 {
  width: 24%;
  height: 24%;
  right: 18%;
  top: 20%;
  background: radial-gradient(#8c5a2b, #6a3f1a);
}
.tf-plate .k3 {
  width: 22%;
  height: 22%;
  left: 22%;
  bottom: 22%;
  background: radial-gradient(#f3ebd9, #dccfb3);
}
.tf-plate .k4 {
  width: 20%;
  height: 20%;
  right: 22%;
  bottom: 24%;
  background: radial-gradient(#6f8f3a, #4e6b22);
}
.tf-plate .roti {
  width: 34%;
  height: 34%;
  left: 33%;
  top: 33%;
  background: radial-gradient(circle at 40% 40%, #ebc98f, #c99a55);
}
.tf-week {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.tf-week div {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tf-week b {
  font-family: var(--hf);
  color: #9a3b12;
  font-weight: 400;
}
.tf-week span {
  font-size: 14px;
  flex: 1;
}
.tf-week em {
  font-style: normal;
  font-weight: 600;
}
.tf-order {
  background: var(--soft);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
}
.tf-order p {
  margin-top: 8px;
  opacity: 0.8;
}
@container (max-width:760px) {
  .tf-hero,
  .tf-order {
    grid-template-columns: 1fr;
  }
  .tf-week {
    grid-template-columns: 1fr 1fr;
  }
  .tf-plate {
    max-width: 260px;
  }
}

/* 2 photographer: near-black, italic serif, full-bleed image, masonry */
.t-photo {
  --bg: #0f0e0d;
  --fg: #ede7df;
  --soft: #1b1917;
  --acc: #ede7df;
  --acc-fg: #0f0e0d;
  --line2: #ffffff22;
  --hf: "Cormorant Garamond", Georgia, serif;
  --bf: "Jost", system-ui, sans-serif;
}
.t-photo .tp-logo {
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
}
.t-photo .tp-nav {
  position: relative;
  z-index: 1;
}
.ph-hero {
  position: relative;
  height: clamp(320px, 60cqi, 560px);
  margin-top: -70px;
}
.ph-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #0f0e0d 2%, #0f0e0d00 50%),
    radial-gradient(ellipse at 70% 35%, #8a7462, #3a2e27 55%, #141110);
  display: grid;
  place-items: center;
}
.ph-over {
  position: absolute;
  left: 28px;
  bottom: 36px;
  right: 28px;
}
.ph-over h1 {
  font-size: clamp(44px, 8cqi, 92px);
  line-height: 0.92;
  font-weight: 400;
}
.ph-over h1 em {
  font-style: italic;
}
.ph-over p {
  margin-top: 12px;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.75;
}
.ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 160px;
  gap: 8px;
}
.ph-grid div {
  display: grid;
  place-items: center;
  border-radius: 2px;
}
.ph-grid .g1 {
  grid-row: span 2;
  background: linear-gradient(160deg, #5b4a3f, #1e1815);
}
.ph-grid .g2 {
  background: linear-gradient(200deg, #a08a74, #3c3129);
}
.ph-grid .g3 {
  grid-row: span 2;
  background: linear-gradient(120deg, #2d2a33, #6d5f57);
}
.ph-grid .g4 {
  background: linear-gradient(30deg, #4a3b32, #8e7865);
}
.ph-grid .g5 {
  grid-column: span 3;
  grid-row: span 1;
  background: linear-gradient(90deg, #1c1816, #5f4f44, #1c1816);
}
.t-photo h2 {
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
}
.ph-pk {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line2);
}
.ph-pk div {
  padding: 18px 18px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--line2);
}
.ph-pk b {
  font: 500 24px var(--hf);
}
.ph-pk span {
  opacity: 0.65;
  font-size: 14px;
}
.ph-pk em {
  font-style: normal;
  letter-spacing: 0.04em;
}
.t-photo .tp-btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  padding: 12px 20px;
}
.t-photo .tp-form input {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  padding-inline: 0;
}
@container (max-width:560px) {
  .ph-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ph-grid .g5 {
    grid-column: span 2;
  }
  .ph-pk {
    grid-template-columns: 1fr;
  }
}

/* 3 clinic: mint + white, rounded, trust-first */
.t-clinic {
  --bg: #f7fbfa;
  --fg: #12332e;
  --soft: #e3f1ee;
  --acc: #1d7a6b;
  --line2: #cfe3de;
  --hf: "Plus Jakarta Sans", system-ui, sans-serif;
  --bf: "Plus Jakarta Sans", system-ui, sans-serif;
}
.t-clinic .tp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.t-clinic .tp-logo i {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--acc);
  display: inline-block;
  box-shadow: inset 0 0 0 6px #bfe6dd;
}
.t-clinic h1,
.t-clinic h2 {
  font-weight: 700;
  letter-spacing: -0.03em;
}
.t-clinic .tp-btn {
  border-radius: 999px;
}
.cl-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding: 36px 28px 48px;
  align-items: center;
}
.cl-hero h1 {
  font-size: clamp(32px, 5cqi, 52px);
  line-height: 1.04;
  margin: 8px 0 12px;
}
.cl-hero p {
  max-width: 42ch;
  margin-bottom: 20px;
  opacity: 0.8;
}
.cl-hours {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 20px 40px -30px #1d7a6b66;
}
.cl-hours b {
  color: var(--acc);
}
.cl-hours div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px dashed var(--line2);
  padding-bottom: 8px;
}
.cl-hours .cl-call {
  border: 0;
  font-weight: 700;
}
.cl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.cl-grid div {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cl-grid span {
  color: var(--acc);
  font-weight: 600;
  font-size: 14px;
}
.cl-docs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cl-docs div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 16px;
  padding: 14px 18px;
}
.cl-docs i {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--soft);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 700;
  color: var(--acc);
}
.cl-docs span {
  font-size: 13px;
  opacity: 0.7;
}
.cl-book {
  background: var(--soft);
  border-radius: 28px;
  margin: 0 28px 28px;
}
@container (max-width:760px) {
  .cl-hero {
    grid-template-columns: 1fr;
  }
  .cl-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cl-book {
    margin-inline: 12px;
  }
}

/* 4 waitlist: lilac, huge grotesque, centered */
.t-wait {
  --bg: #f2ebff;
  --fg: #1e1238;
  --soft: #e4d8ff;
  --acc: #1e1238;
  --line2: #cdbbf5;
  --hf: "Bricolage Grotesque", system-ui, sans-serif;
  --bf: "Bricolage Grotesque", system-ui, sans-serif;
}
.t-wait .tp-logo {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 24px;
}
.t-wait .tp-logo sup {
  color: #8a5cff;
  font-size: 10px;
}
.wt-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 56px 24px 64px;
}
.wt-pill {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
}
.wt-hero h1 {
  font-size: clamp(46px, 10cqi, 120px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 700;
}
.wt-hero mark {
  background: #c8f169;
  color: inherit;
  padding: 0 0.1em;
  border-radius: 0.1em;
}
.wt-hero p {
  max-width: 46ch;
  font-size: 17px;
  opacity: 0.8;
}
.wt-join {
  display: flex;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 14px;
  padding: 6px;
  width: min(460px, 100%);
}
.wt-join input {
  flex: 1;
  min-width: 0;
  border: 0;
  font: 16px var(--bf);
  padding: 0 10px;
  background: none;
  color: var(--fg);
  outline: none;
}
.t-wait .tp-btn {
  border-radius: 10px;
}
.wt-count {
  font-size: 12px;
  opacity: 0.6;
}
.wt-feat {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.wt-feat div {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wt-feat b {
  color: #8a5cff;
  font-size: 13px;
}
.wt-feat h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
}
@container (max-width:640px) {
  .wt-feat {
    grid-template-columns: 1fr;
  }
}

/* 5 yoga: forest green, soft serif, timetable */
.t-yoga {
  --bg: #1b2a1e;
  --fg: #e6efd9;
  --soft: #233628;
  --acc: #c9e27a;
  --acc-fg: #1b2a1e;
  --line2: #ffffff1f;
  --hf: "Fraunces", Georgia, serif;
  --bf: "Jost", system-ui, sans-serif;
}
.t-yoga .tp-logo {
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
}
.t-yoga .tp-btn {
  border-radius: 999px;
}
.yg-hero {
  padding: 48px 28px 56px;
  position: relative;
  overflow: hidden;
}
.yg-sun {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #c9e27a55, #c9e27a00 70%);
}
.yg-hero h1 {
  font-size: clamp(40px, 7cqi, 80px);
  line-height: 1;
  font-weight: 300;
  position: relative;
}
.yg-hero h1 em {
  color: var(--acc);
}
.yg-hero p {
  margin-top: 14px;
  opacity: 0.8;
  position: relative;
}
.t-yoga h2 {
  font-weight: 300;
}
.yg-tt {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-x: auto;
}
.yg-tt div {
  display: grid;
  grid-template-columns: 56px repeat(6, minmax(70px, 1fr));
  gap: 6px;
  min-width: 520px;
}
.yg-tt .h span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.yg-tt span {
  font-size: 14px;
  align-self: center;
}
.yg-tt i {
  font-style: normal;
  font-size: 13px;
  background: var(--soft);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.yg-tt i.x {
  background: var(--acc);
  color: var(--acc-fg);
  font-weight: 500;
}
.yg-tt i.o {
  background: none;
  border: 1px dashed var(--line2);
}
.yg-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}
.yg-t {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
}
.yg-ph {
  aspect-ratio: 3/4;
  border-radius: 80px 80px 12px 12px;
  background: linear-gradient(180deg, #5d7a4f, #2c3f2a);
  display: grid;
  place-items: end center;
  padding-bottom: 12px;
}
.yg-t p {
  margin-top: 8px;
  opacity: 0.8;
}
.t-yoga .tp-form {
  background: var(--soft);
  padding: 20px;
  border-radius: 20px;
}
.t-yoga .tp-form h3 {
  font-weight: 400;
  font-size: 22px;
}
@container (max-width:760px) {
  .yg-split {
    grid-template-columns: 1fr;
  }
  .yg-t {
    grid-template-columns: 100px 1fr;
  }
}

/* 6 chai: loud orange, poster type, menu board */
.t-chai {
  --bg: #ffe7d6;
  --fg: #3a1c0e;
  --soft: #ffd4b8;
  --acc: #e2551b;
  --line2: #e9b996;
  --hf: "Archivo Black", Impact, sans-serif;
  --bf: "Archivo", system-ui, sans-serif;
}
.t-chai .tp-logo {
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 22px;
}
.t-chai .tp-btn {
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--fg);
}
.ch-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 24px 28px 44px;
  border-bottom: 3px solid var(--fg);
}
.ch-hero h1 {
  font-size: clamp(56px, 13cqi, 150px);
  line-height: 0.86;
  text-transform: uppercase;
  font-weight: 400;
}
.ch-hero h1 span {
  color: var(--acc);
}
.ch-badge {
  flex: none;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: grid;
  place-items: center;
  text-align: center;
  font: 400 14px/1.1 var(--hf);
  text-transform: uppercase;
  transform: rotate(-12deg);
}
.ch-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
}
.ch-menu div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 2px dotted var(--fg);
  font-size: 18px;
}
.ch-menu b {
  font: 400 18px var(--hf);
  text-transform: uppercase;
}
.ch-menu em {
  font-style: normal;
  font-weight: 600;
}
.t-chai h2 {
  text-transform: uppercase;
  font-weight: 400;
}
.ch-loc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.ch-loc div {
  background: var(--fg);
  color: var(--bg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ch-loc b {
  font: 400 20px var(--hf);
  text-transform: uppercase;
}
.ch-loc span {
  font-size: 13px;
  opacity: 0.8;
}
.ch-fr {
  background: var(--acc);
  color: #fff;
}
.ch-fr .tp-btn {
  background: var(--fg);
}
.ch-fr .tp-form input {
  border-color: #fff6;
}
@container (max-width:640px) {
  .ch-menu,
  .ch-loc {
    grid-template-columns: 1fr;
  }
  .ch-badge {
    width: 80px;
    height: 80px;
    font-size: 11px;
  }
}

/* apps: a simple admin/list screen instead of a marketing page — this is
   the honest thing an app "sample" is (a login-gated table or board), not
   a hero section. Shares .tpl/.tp-nav/.tp-btn from the base above. */
.t-admin {
  --bg: #f6f5f2;
  --fg: #1c1a24;
  --soft: #fff;
  --acc: #1c1a24;
  --acc-fg: #fff;
  --line2: #e4e1d8;
  --hf: "Plus Jakarta Sans", system-ui, sans-serif;
  --bf: "Plus Jakarta Sans", system-ui, sans-serif;
}
.ad-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line2);
  background: var(--soft);
}
.ad-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 99px;
  background: var(--line2);
  color: var(--fg);
}
.ad-body {
  padding: 20px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ad-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.ad-stats div {
  background: var(--soft);
  border: 1px solid var(--line2);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ad-stats b {
  font-size: 22px;
}
.ad-stats span {
  font-size: 12px;
  opacity: 0.65;
}
.ad-table {
  background: var(--soft);
  border: 1px solid var(--line2);
  border-radius: 10px;
  overflow: hidden;
}
.ad-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line2);
  font-size: 13px;
}
.ad-row:last-child {
  border-bottom: 0;
}
.ad-row.head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.55;
}
.ad-pill {
  justify-self: start;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 99px;
}
.ad-pill.ok {
  background: #dcf3e6;
  color: #1d7a4c;
}
.ad-pill.wait {
  background: #fdead0;
  color: #97590c;
}
@container (max-width:560px) {
  .ad-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .ad-stats {
    grid-template-columns: 1fr;
  }
}
