/* The People's Studio — one stylesheet for the whole site.
 *
 * Every class here is prefixed tps- so that nothing in this file can ever
 * collide with a class name inside one of the musical tools. The tools were
 * written first, with their own .wrap, .panel, .btn, .grid, .nav and so on;
 * before the prefix those clashes were pulling tool pages out of alignment
 * and making controls disappear.
 *
 * Fonts are self-hosted in fonts/ so the site works with the internet off.
 */

@import url('fonts.css');

:root{
  /* ground — warm sand, deep enough that a white card reads as a card */
  --sand:#F3E9D6;
  --sand-2:#ECDFC6;
  --white:#FFFFFF;

  --indigo:#26215C;
  --indigo-deep:#1B1735;
  --green:#1B9E77;
  --green-dark:#15785a;
  --violet:#7F77DD;
  --violet-dark:#5B53B8;
  --terra:#C4643C;
  --terra-dark:#A54F2C;
  --amber:#EF9F27;
  --amber-light:#F2B255;
  --amber-deep:#B5741A;

  --ink:#26215C;
  --body:#4A4578;
  --muted:#565182;
  --faint:#6E6899;
  --line:rgba(38,33,92,.18);
  --line-soft:rgba(38,33,92,.12);
  --mint:#E3F3EC;
  --lilac:#EDEAF9;
  --blush:#F7E3D8;

  --sh:0 1px 2px rgba(38,33,92,.06), 0 6px 18px rgba(38,33,92,.09);
  --sh-lift:0 2px 4px rgba(38,33,92,.08), 0 12px 28px rgba(38,33,92,.13);

  --r:12px;
  --rb:9px;
  --pad:72px;
  --head-h:114px;

  --disp:'Bricolage Grotesque','Helvetica Neue',Arial,sans-serif;
  --wm:'Comfortaa','Trebuchet MS',sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Figtree','Helvetica Neue',Arial,sans-serif;
  background:var(--sand);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
h1,h2,h3,h4{font-family:var(--disp);margin:0;letter-spacing:-.03em;line-height:1.06;font-weight:800}
p{margin:0;text-wrap:pretty}
ul,ol{margin:0;padding:0;list-style:none}
a{color:var(--green-dark);text-decoration:none}
a:hover{color:var(--green)}
a:focus-visible,button:focus-visible,summary:focus-visible,
input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:3px solid var(--green);outline-offset:3px}

.tps-wrap{padding-left:var(--pad);padding-right:var(--pad)}
.tps-sect{padding-top:72px}
.tps-kick{font-family:var(--disp);font-size:13px;letter-spacing:.22em;text-transform:uppercase;
  font-weight:700;color:var(--terra)}
.tps-lead{font-size:19px;line-height:1.68;color:var(--body)}
.tps-body{font-size:16px;line-height:1.65;color:var(--muted)}
.tps-small{font-size:15px;color:var(--faint)}
.tps-skip{position:absolute;left:-9999px}
.tps-skip:focus{left:20px;top:12px;z-index:99;background:#fff;padding:12px 18px;border-radius:var(--rb)}

/* ---------- placeholders ---------- */

.tps-ph{
  display:block;font-family:var(--disp);font-weight:500;font-size:15px;line-height:1.5;
  color:#7A5714;background:rgba(239,159,39,.2);
  border:1.5px dashed rgba(181,116,26,.8);border-radius:var(--rb);
  padding:12px 14px;letter-spacing:0;text-transform:none;
}
.tps-ph + .tps-ph{margin-top:10px}
.tps-kick .tps-ph,h1 .tps-ph,h2 .tps-ph,h3 .tps-ph{font-size:15px;letter-spacing:0;text-transform:none}
.tps-panel .tps-ph,.tps-slide-body .tps-ph,.tps-foot .tps-ph{
  color:#F7E7C8;background:rgba(239,159,39,.18);border-color:rgba(242,178,85,.7)}

.tps-shot{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  background:var(--lilac);border:1.5px dashed var(--line);border-radius:var(--r);
  color:#6E6899;font-family:var(--disp);font-weight:500;font-size:14px;
  text-align:center;padding:18px;
}
.tps-shot svg{width:28px;height:28px;opacity:.6}
.tps-shot b{font-weight:700;font-size:15px;color:#5A5488}
.tps-panel .tps-shot,.tps-slide-img .tps-shot{
  background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.24);color:#A69DE0}
.tps-panel .tps-shot b,.tps-slide-img .tps-shot b{color:#C6BEF0}

/* ---------- locked header ---------- */

.tps-head{
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;padding:18px var(--pad);
  background:var(--sand);border-bottom:1px solid var(--line-soft);
  position:sticky;top:0;z-index:50;
}
.tps-lockup{display:flex;align-items:center;gap:10px;flex-shrink:0}
.tps-lockup svg{width:78px;height:73px;display:block}
/* the stack stays left-aligned beside the mark wherever the lockup appears */
.tps-wordmark{font-family:var(--wm);font-weight:700;font-size:21px;line-height:1.16;
  color:var(--indigo);text-align:left}
.tps-nav{display:flex;align-items:center;gap:26px;font-size:16px;font-weight:500}
.tps-nav a{color:var(--ink)}
.tps-nav a:hover{color:var(--green-dark)}
.tps-nav a.tps-on{font-weight:700;border-bottom:3px solid var(--green);padding-bottom:3px}
.tps-burger{display:none;background:none;border:0;padding:10px;cursor:pointer}
.tps-burger span{display:block;width:26px;height:2px;background:var(--ink);margin:5px 0;border-radius:2px}

/* ---------- buttons ---------- */

.tps-btn{display:inline-flex;align-items:center;justify-content:center;min-height:54px;
  padding:14px 28px;font-family:var(--disp);font-weight:700;font-size:16px;
  border-radius:var(--rb);gap:10px;border:0;cursor:pointer;box-shadow:var(--sh)}
.tps-btn-green{background:var(--green);color:#fff!important}
.tps-btn-green:hover{background:var(--green-dark);color:#fff!important}
.tps-btn-indigo{background:var(--indigo);color:#fff!important}
.tps-btn-indigo:hover{background:var(--indigo-deep);color:#fff!important}
.tps-btn-amber{background:var(--amber);color:var(--indigo)!important}
.tps-btn-amber:hover{background:var(--amber-light);color:var(--indigo)!important}
.tps-btn-terra{background:var(--terra);color:#fff!important}
.tps-btn-terra:hover{background:var(--terra-dark);color:#fff!important}
.tps-btn-ghost{border:1.5px solid rgba(38,33,92,.4);color:var(--ink)!important;background:var(--white)}
.tps-btn-ghost:hover{border-color:var(--green);color:var(--green-dark)!important}
.tps-btns{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}
/* a button row inside a card drops to the foot, so cards in a row line up */
.tps-card .tps-btns{margin-top:auto}

/* ---------- banner ----------
   Height derives from one requirement: the four cards below must be at least
   partly visible without scrolling. The locked header takes its share first. */

.tps-banner{position:relative;margin-top:28px;border-radius:var(--r);overflow:hidden;
  background:var(--indigo);height:clamp(300px,calc(74vh - var(--head-h)),470px);
  box-shadow:var(--sh-lift)}
.tps-slides{display:flex;height:100%;transition:transform .5s ease;will-change:transform}
@media (prefers-reduced-motion:reduce){.tps-slides{transition:none}}
.tps-slide{flex:0 0 100%;min-width:100%;display:flex;flex-direction:column;height:100%;color:#fff}
.tps-slide:hover{color:#fff}
.tps-slide-img{position:relative;flex:1 1 auto;min-height:0;background:var(--indigo-deep);
  display:flex;align-items:center;justify-content:center}
.tps-slide-img .tps-shot{width:100%;height:100%;border:0;border-radius:0;background:transparent}
.tps-slide-body{flex:0 0 auto;padding:22px 26px 30px}
.tps-slide-body .tps-kick{color:var(--amber-light)}
.tps-slide-body h2{color:#fff;font-size:clamp(26px,5.2vw,34px);margin-top:10px}
.tps-slide-body .tps-ph{margin-top:12px}
.tps-go{display:inline-flex;align-items:center;gap:8px;margin-top:16px;
  font-family:var(--disp);font-weight:700;font-size:17px;color:var(--amber)}

.tps-dots{position:absolute;left:0;right:0;bottom:10px;display:flex;justify-content:flex-end;
  gap:6px;padding-right:16px}
.tps-dots button{width:34px;height:34px;padding:0;border:0;background:none;cursor:pointer;
  box-shadow:none;display:flex;align-items:center;justify-content:center}
.tps-dots button::after{content:"";width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.45)}
.tps-dots button[aria-current="true"]::after{background:var(--amber);width:26px;border-radius:999px}

/* ---------- the four destinations ---------- */

.tps-four{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:20px}
.tps-four a{display:flex;flex-direction:column;gap:10px;min-height:112px;
  background:var(--white);border-radius:var(--r);padding:20px 18px;color:var(--ink);
  box-shadow:var(--sh)}
.tps-four a:hover{color:var(--ink);box-shadow:var(--sh-lift)}
.tps-four a:nth-child(1){border-top:4px solid var(--amber)}
.tps-four a:nth-child(2){border-top:4px solid var(--green)}
.tps-four a:nth-child(3){border-top:4px solid var(--violet)}
.tps-four a:nth-child(4){border-top:4px solid var(--terra)}
.tps-icon{width:32px;height:32px}
.tps-four strong{font-family:var(--disp);font-weight:700;font-size:19px;line-height:1.14}
.tps-four span{font-size:15.5px;line-height:1.45;color:var(--muted)}

/* ---------- panels, cards, headings ---------- */

.tps-panel{background:var(--indigo);color:#fff;border-radius:var(--r);padding:60px;
  box-shadow:var(--sh-lift)}
.tps-panel h2,.tps-panel h3{color:#fff}
.tps-panel p{color:#E4E0F6}
.tps-panel .tps-kick{color:var(--amber-light)}
.tps-panel a{color:var(--amber-light)}
.tps-panel-terra{background:var(--terra)}
.tps-panel-terra .tps-kick{color:#FBE2D4}

/* a deeper sand band, for breaking long stretches of page */
.tps-tint{background:var(--sand-2);padding-top:64px;padding-bottom:64px;margin-top:72px}
.tps-tint + .tps-tint{margin-top:0}

.tps-card{background:var(--white);border-radius:var(--r);padding:28px 26px;
  display:flex;flex-direction:column;box-shadow:var(--sh)}
a.tps-card,a.tps-card h3{color:var(--ink)}
a.tps-card:hover{box-shadow:var(--sh-lift);color:var(--ink)}
a.tps-doorway h3,a.tps-card:hover h3{color:var(--ink)}
.tps-card h3{font-size:23px;font-weight:700;line-height:1.14;letter-spacing:-.02em}
.tps-card p{margin-top:10px;font-size:16px;line-height:1.65;color:var(--muted)}
.tps-t-green{border-top:4px solid var(--green)}
.tps-t-violet{border-top:4px solid var(--violet)}
.tps-t-terra{border-top:4px solid var(--terra)}
.tps-t-amber{border-top:4px solid var(--amber)}
.tps-t-indigo{border-top:4px solid var(--indigo)}

.tps-rule{display:flex;align-items:baseline;gap:18px;flex-wrap:wrap;
  border-bottom:2px solid var(--line-soft);padding-bottom:14px}
.tps-rule h2{font-size:clamp(28px,3vw,38px);font-weight:800}
.tps-sechead{display:grid;gap:56px;grid-template-columns:7fr 5fr;align-items:end}
.tps-sechead h2{font-size:clamp(30px,3.6vw,46px);margin-top:18px;font-weight:800}
.tps-sechead .tps-lead,.tps-sechead .tps-ph{margin-bottom:6px}
.tps-pagehead{padding-top:40px}
.tps-pagehead h1{font-size:clamp(34px,4.6vw,60px)}
.tps-pagehead .tps-lead{margin-top:22px;max-width:64ch}

.tps-says{display:flex;flex-direction:column;gap:20px;margin-top:26px}
.tps-says li{display:flex;gap:15px;align-items:flex-start;font-size:17px;line-height:1.6}
.tps-tick{flex:0 0 auto;width:26px;height:26px;color:var(--amber);margin-top:2px}

.tps-grid{display:grid;gap:24px;margin-top:28px}
.tps-g2{grid-template-columns:repeat(2,minmax(0,1fr))}
.tps-g3{grid-template-columns:repeat(3,minmax(0,1fr))}
.tps-g4{grid-template-columns:repeat(4,minmax(0,1fr))}
.tps-stack{display:flex;flex-direction:column;gap:18px;margin-top:22px}

.tps-steps{background:var(--white);border-radius:var(--r);padding:4px 24px;box-shadow:var(--sh)}
.tps-steps li{display:flex;gap:16px;padding:20px 0}
.tps-steps li + li{border-top:1px solid var(--line-soft)}
.tps-steps .tps-n{font-family:var(--disp);font-size:15px;font-weight:700;color:var(--terra);width:26px;flex:0 0 auto}
.tps-steps strong{font-family:var(--disp);font-size:18px;font-weight:700;display:block}
.tps-steps span,.tps-steps .tps-ph{font-size:16px;line-height:1.6;color:var(--muted);margin-top:5px}

.tps-facts{border:1.5px dashed var(--line);border-radius:var(--r);padding:24px 26px;margin-top:34px}
.tps-facts li{font-size:16px;line-height:1.6;color:var(--muted)}
.tps-facts li + li{margin-top:12px}
.tps-invite{border:1.5px dashed var(--line);border-radius:var(--r);padding:24px 26px;margin-top:18px}

.tps-note{background:var(--amber);border-radius:var(--r);padding:30px 28px;color:#3F2E0C;
  box-shadow:var(--sh-lift)}
.tps-note .tps-kick{color:#6B4C0C}
.tps-note h2{font-size:clamp(28px,3.4vw,38px);margin-top:10px;color:var(--indigo)}
.tps-note p{margin-top:10px;font-size:17px;line-height:1.6;color:#4A3612}
.tps-note .tps-ph{background:rgba(255,255,255,.6);border-color:rgba(107,76,12,.55);color:#5C430C}

/* ---------- forms ---------- */

.tps-form{background:var(--white);border-radius:var(--r);padding:30px 28px;box-shadow:var(--sh)}
.tps-panel .tps-form{background:rgba(255,255,255,.07);box-shadow:none}
.tps-field{display:block;margin-top:18px}
.tps-field > span{display:block;font-family:var(--disp);font-size:15px;font-weight:600;
  color:var(--body);margin-bottom:8px}
.tps-panel .tps-field > span{color:#D8D3F0}
.tps-field input,.tps-field select,.tps-field textarea{
  width:100%;font:inherit;font-size:16px;color:var(--ink);
  background:var(--sand);border:1.5px solid var(--line);border-radius:var(--rb);
  padding:14px 16px;min-height:52px}
.tps-field textarea{min-height:150px;resize:vertical}
.tps-send{width:100%;margin-top:18px;min-height:54px;background:var(--amber);color:var(--indigo);
  border:0;border-radius:var(--rb);font-family:var(--disp);font-size:17px;font-weight:700;cursor:pointer}
.tps-form-note{font-size:15px;color:var(--faint);margin-top:14px}
.tps-panel .tps-form-note{color:#B7B0E4}

.tps-catrow{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.tps-catrow a{font-family:var(--disp);font-weight:600;font-size:15.5px;min-height:48px;
  padding:12px 18px;border-radius:999px;background:var(--white);box-shadow:var(--sh);
  color:var(--ink);display:inline-flex;align-items:center}
.tps-catrow a:hover{color:var(--green-dark);box-shadow:var(--sh-lift)}

/* ---------- People's Music ---------- */

.tps-filters{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.tps-filters button{font-family:var(--disp);font-weight:600;font-size:15px;
  min-height:48px;padding:12px 18px;border-radius:999px;cursor:pointer;
  background:var(--white);border:0;color:var(--ink);box-shadow:var(--sh)}
.tps-filters button:hover{color:var(--green-dark)}
.tps-filters button[aria-pressed="true"]{background:var(--indigo);color:#fff}

.tps-find{margin-top:14px;max-width:420px}
.tps-find input{width:100%;font:inherit;font-size:16px;color:var(--ink);min-height:52px;
  background:var(--white);border:1.5px solid var(--line);border-radius:var(--rb);padding:14px 16px}

.tps-entries{display:grid;gap:20px;margin-top:26px;grid-template-columns:repeat(4,minmax(0,1fr))}
.tps-entry{background:var(--white);border-radius:var(--r);padding:0;overflow:hidden;
  display:flex;flex-direction:column;border-top:4px solid var(--violet);box-shadow:var(--sh)}
.tps-entry[hidden]{display:none}
.tps-entry .tps-pic{aspect-ratio:16/10;width:100%;background:var(--lilac);flex:0 0 auto}
.tps-entry .tps-pic img{width:100%;height:100%;object-fit:cover}
.tps-entry .tps-pic .tps-shot{width:100%;height:100%;border:0;border-radius:0;
  background:transparent;padding:10px;gap:5px}
.tps-entry .tps-pic .tps-shot svg{width:20px;height:20px}
.tps-entry .tps-pic .tps-shot b{font-size:13px}
.tps-entry .tps-txt{padding:16px 16px 18px;display:flex;flex-direction:column;flex:1 1 auto}
.tps-entry h3{font-size:18px;font-weight:700;line-height:1.2}
.tps-entry .tps-bio{margin-top:8px;font-size:15px;line-height:1.55;color:var(--muted)}
/* the link row is drawn on every card whether or not there is anything in it
   yet, so a card with links is exactly the same shape as one without */
.tps-entry .tps-out{display:flex;gap:7px;flex-wrap:wrap;margin-top:auto;
  padding-top:14px;min-height:54px}
.tps-entry .tps-out a{display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:999px;background:var(--sand);color:var(--ink)}
.tps-entry .tps-out a:hover{background:var(--mint);color:var(--green-dark)}
.tps-entry .tps-out svg{width:19px;height:19px}
.tps-none{margin-top:26px;padding:28px 26px;border:1.5px dashed var(--line);border-radius:var(--r);
  color:var(--muted);font-size:16px}
.tps-none[hidden]{display:none}

/* Nature's Music doorway, sitting beside the filters */
.tps-doorway{display:block;background:var(--white);border-radius:var(--r);overflow:hidden;
  border-top:4px solid var(--green);box-shadow:var(--sh);color:var(--ink)}
.tps-doorway:hover{box-shadow:var(--sh-lift);color:var(--ink)}
.tps-doorway img,.tps-doorway .tps-mapimg{display:block;width:100%;aspect-ratio:16/9;object-fit:cover}
.tps-doorway .tps-mapimg{background:var(--lilac)}
.tps-doorway .tps-mapimg .tps-shot{width:100%;height:100%;border:0;border-radius:0;background:transparent}
.tps-doorway .tps-txt{padding:18px 20px 22px}
.tps-doorway h3{font-size:21px;font-weight:700}
.tps-doorway p{margin-top:8px;font-size:15.5px;line-height:1.6;color:var(--muted)}

/* ---------- Nature's Music map ---------- */

.tps-map{height:clamp(320px,52vh,520px);border-radius:var(--r);overflow:hidden;
  box-shadow:var(--sh-lift);margin-top:26px;background:var(--lilac)}
.tps-map-note{margin-top:12px;font-size:15px;color:var(--faint)}

/* ---------- cheat sheets ---------- */

.tps-sheets{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px;margin-top:22px}
.tps-sheet{background:var(--white);border-radius:var(--rb);padding:16px 15px 15px;
  box-shadow:var(--sh);display:flex;flex-direction:column;min-height:132px}
.tps-sheet h4{font-family:var(--disp);font-size:16px;font-weight:700;line-height:1.24;
  letter-spacing:-.01em}
.tps-sheet .tps-two{display:flex;gap:7px;flex-wrap:wrap;margin-top:auto;padding-top:14px}
.tps-sheet .tps-two a{display:inline-flex;align-items:center;min-height:38px;padding:0 12px;
  border-radius:var(--rb);font-family:var(--disp);font-size:13px;font-weight:700}
.tps-sheet .tps-les{background:var(--mint);color:var(--green-dark)}
.tps-sheet .tps-exe{background:var(--sand-2);color:var(--muted)}

/* ---------- tool pages ---------- */

.tps-toolbar{display:flex;flex-wrap:wrap;align-items:center;gap:12px;padding-top:20px}
.tps-back{display:inline-flex;align-items:center;gap:8px;min-height:46px;
  font-family:var(--disp);font-weight:600;font-size:16px;color:var(--muted)}
.tps-back:hover{color:var(--green-dark)}
.tps-switcher > summary{
  list-style:none;display:inline-flex;align-items:center;gap:8px;cursor:pointer;
  min-height:46px;padding:0 18px;border-radius:999px;background:var(--white);
  box-shadow:var(--sh);font-family:var(--disp);font-weight:600;font-size:15.5px;color:var(--ink)}
.tps-switcher > summary::-webkit-details-marker{display:none}
.tps-switcher[open] > summary{background:var(--indigo);color:#fff}
.tps-switcher .tps-chev{transition:transform .15s ease}
.tps-switcher[open] .tps-chev{transform:rotate(180deg)}
.tps-switcher .tps-list{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;
  margin-top:14px;padding:18px;background:var(--white);border-radius:var(--r);box-shadow:var(--sh)}
.tps-switcher .tps-list a{display:flex;align-items:center;min-height:52px;padding:12px 14px;
  border-radius:var(--rb);background:var(--sand);
  font-family:var(--disp);font-weight:600;font-size:15px;color:var(--ink)}
.tps-switcher .tps-list a:hover{background:var(--mint);color:var(--green-dark)}
.tps-switcher .tps-list a[aria-current="page"]{background:var(--indigo);color:#fff}

.tps-alongside{display:flex;flex-wrap:wrap;gap:14px;align-items:center;
  margin-top:36px;padding:20px 24px;border-radius:var(--r);background:var(--mint);
  font-size:16px;color:#2F5348}
.tps-alongside strong{font-family:var(--disp);font-size:12px;letter-spacing:.22em;
  text-transform:uppercase;color:var(--green-dark)}
.tps-alongside a{display:inline-flex;align-items:center;min-height:44px;padding:0 16px;
  border-radius:var(--rb);background:#fff;color:var(--green-dark);font-weight:700;font-size:14.5px}

.tps-safe{display:flex;gap:12px;align-items:flex-start;background:var(--white);
  border-radius:var(--r);padding:18px 20px;margin-top:26px;box-shadow:var(--sh);
  font-size:15.5px;line-height:1.6;color:var(--muted)}
.tps-safe svg{flex:0 0 auto;width:20px;height:20px;color:var(--green);margin-top:3px}

/* ---------- footer, centred ---------- */

.tps-foot{margin-top:96px;background:var(--indigo);color:#D8D3F0;
  padding:60px var(--pad) 42px;text-align:center}
/* centred block, but the lockup itself keeps its left-aligned stack */
.tps-foot .tps-lockup{display:inline-flex;text-align:left}
.tps-foot .tps-wordmark{color:#fff}
.tps-foot-line{margin:26px auto 0;max-width:36ch}
.tps-foot-nav{display:flex;justify-content:center;flex-wrap:wrap;gap:10px 26px;margin-top:28px;font-size:16px}
.tps-foot a{color:#D8D3F0}
.tps-foot a:hover{color:var(--amber-light)}
.tps-foot-contact{margin-top:26px;font-size:17px;line-height:2;color:#D8D3F0}
.tps-foot-base{margin-top:40px;padding-top:22px;border-top:1px solid rgba(255,255,255,.22);
  font-size:14.5px;color:#ADA5DC;display:flex;flex-direction:column;gap:8px;align-items:center}

/* ---------- responsive ---------- */

@media (max-width:1200px){
  .tps-sheets{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media (max-width:1100px){
  :root{--pad:40px;--head-h:110px}
  .tps-g3,.tps-g4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .tps-entries{grid-template-columns:repeat(3,minmax(0,1fr))}
  .tps-sheets{grid-template-columns:repeat(3,minmax(0,1fr))}
  .tps-sechead{grid-template-columns:1fr;gap:24px;align-items:start}
  .tps-sechead .tps-lead,.tps-sechead .tps-ph{margin-bottom:0}
  .tps-panel{padding:44px 38px}
  .tps-switcher .tps-list{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (min-width:1101px){
  .tps-four{grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}
  .tps-slide{display:grid;grid-template-columns:1fr 1fr;align-items:stretch}
  .tps-slide-img{min-height:0}
  .tps-slide-body{display:flex;flex-direction:column;justify-content:center;padding:44px 48px}
  .tps-dots{bottom:20px;justify-content:flex-start;padding-left:calc(50% + 48px);gap:10px}
}
@media (max-width:820px){
  :root{--pad:22px;--head-h:92px}
  .tps-burger{display:block}
  .tps-head{padding:14px var(--pad)}
  .tps-nav{display:none;position:absolute;top:100%;left:0;right:0;
    flex-direction:column;align-items:stretch;gap:0;background:var(--sand);
    border-bottom:1px solid var(--line-soft);padding:8px var(--pad) 18px;
    box-shadow:0 18px 30px rgba(38,33,92,.16)}
  .tps-nav.tps-open{display:flex}
  .tps-nav a{padding:15px 0;border-bottom:1px solid var(--line-soft);font-size:17px;
    min-height:52px;display:flex;align-items:center}
  .tps-nav a.tps-on{border-bottom:1px solid var(--line-soft)}
  .tps-lockup svg{width:60px;height:56px}
  .tps-wordmark{font-size:17px}
  .tps-g2,.tps-g3,.tps-g4{grid-template-columns:1fr}
  .tps-grid{gap:16px}
  .tps-entries{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
  .tps-sheets{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .tps-four{gap:12px;margin-top:16px}
  .tps-four a{min-height:96px;padding:16px 15px}
  .tps-four strong{font-size:17px}
  .tps-panel{padding:34px 24px}
  .tps-sect{padding-top:52px}
  .tps-tint{margin-top:52px;padding-top:48px;padding-bottom:48px}
  .tps-card{padding:24px 22px}
  .tps-foot{margin-top:64px;padding:48px var(--pad) 38px}
  .tps-btn{width:100%}
  .tps-btns{flex-direction:column}
  .tps-switcher{width:100%}
  .tps-switcher > summary{width:100%;justify-content:center}
  .tps-switcher .tps-list{grid-template-columns:repeat(2,minmax(0,1fr))}
  .tps-alongside{padding:18px 20px}
  .tps-pagehead{padding-top:28px}
}
