/* ==========================================================================
   Tailored Trades — one stylesheet, driven by tokens.
   Dark, black + gold. Adapted from the Contra system: restraint, hairlines,
   one accent used sparingly. Change the brand by editing the tokens below.
   ========================================================================== */

:root {
  /* Surfaces — deep, warm near-black with two lifted bands */
  --paper:    #0E0D0B;   /* default background */
  --paper-2:  #151410;   /* alternating section band */
  --paper-3:  #1C1A14;   /* raised surfaces: cards, notice */

  /* Ink — warm off-whites, never pure white */
  --ink:      #F4F1E8;   /* headlines */
  --ink-2:    #CFC9BB;   /* body */
  --muted:    #948E80;   /* labels, meta, eyebrows */

  /* Lines — warm hairlines */
  --line:     #29261E;
  --line-2:   #35301F;   /* slightly warmer/brighter hairline */

  /* Gold — the one accent, sampled from the logo. A spice, not a base. */
  --gold:        #E7C766;
  --gold-bright: #F6EC7D;
  --gold-deep:   #C69A3C;
  --gold-press:  #B4842B;
  --gold-ink:    #14120B;  /* text that sits on a gold fill */
  --gold-faint:  rgba(231, 199, 102, 0.12);

  /* Type */
  --display: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --label:   'Oswald', 'Archivo', sans-serif;

  /* Space */
  --container: 1140px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(56px, 8vw, 112px);

  --radius: 3px;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); margin: 0; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--gold-ink);
  padding: 10px 16px; font-family: var(--label); letter-spacing: .06em;
  text-transform: uppercase; font-size: 13px;
}
.skip-link:focus { left: 8px; top: 8px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* --------------------------------------------------------------- structure */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.topline { height: 3px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep)); }

.eyebrow {
  font-family: var(--label); font-weight: 500;
  text-transform: uppercase; letter-spacing: .22em;
  font-size: 12.5px; color: var(--gold);
  margin: 0 0 18px;
}
.eyebrow--muted { color: var(--muted); }

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 13, 11, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 38px; width: auto; }
.brand .brand-word {
  font-family: var(--label); font-weight: 500;
  text-transform: uppercase; letter-spacing: .24em;
  font-size: 15px; color: var(--ink);
}
@media (max-width: 520px) { .brand .brand-word { display: none; } }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--body); font-weight: 600; font-size: 15.5px;
  color: var(--ink-2); letter-spacing: .01em;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--gold); }
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2);
  color: var(--ink); width: 42px; height: 40px; border-radius: var(--radius);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper-2); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
    transform: translateY(-140%); transition: transform .28s ease;
    box-shadow: 0 24px 40px rgba(0,0,0,.5);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-cta { margin: 16px 0 0; }
  .nav .btn { width: 100%; }
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--label); font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em; font-size: 14px;
  padding: 13px 26px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn--solid {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: var(--gold-ink);
}
.btn--solid:hover { color: var(--gold-ink); filter: brightness(1.05); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--gold); border-color: var(--line-2);
}
.btn--ghost:hover { color: var(--gold-bright); border-color: var(--gold); }
.btn--sm { padding: 10px 18px; font-size: 12.5px; }
.btn svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------- sections */
.section { padding: var(--section-y) 0; }
.section--band { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin: 0 0 clamp(34px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(28px, 4.4vw, 44px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.01em;
}
.section-head .lead { margin-top: 18px; font-size: 19px; color: var(--ink-2); }
.lead { font-size: 19px; line-height: 1.6; }
.measure { max-width: 66ch; }

/* --------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(231,199,102,0.10), transparent 60%),
    radial-gradient(60% 50% at 50% 120%, rgba(231,199,102,0.05), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; padding-top: clamp(52px, 8vw, 96px); padding-bottom: clamp(52px, 8vw, 96px); text-align: center; }
.hero-mark { margin: 0 auto clamp(26px, 4vw, 40px); width: clamp(300px, 46vw, 460px); height: auto; }
.hero h1 {
  font-size: clamp(34px, 6vw, 62px); font-weight: 900; line-height: 1.06;
  letter-spacing: -0.02em; color: var(--ink); max-width: 16ch; margin: 0 auto;
}
.hero h1 .accent { color: var(--gold); }
.hero .sub { margin: 22px auto 0; max-width: 60ch; font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-2); }
.hero .actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------- partner strip */
.partner { border-bottom: 1px solid var(--line); background: var(--paper-2); }
.partner .container { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px var(--gutter); flex-wrap: wrap; text-align: center; }
.partner-logo { height: 40px; width: auto; flex: none; }
.partner-text { font-size: 15px; color: var(--ink-2); margin: 0; }
.partner-text strong { color: var(--ink); font-family: var(--display); font-weight: 700; }
.partner-perk { color: var(--gold); font-weight: 700; white-space: nowrap; }
.partner-perk:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------- page-head */
.page-head { padding: clamp(52px, 7vw, 88px) 0 clamp(30px, 4vw, 46px); border-bottom: 1px solid var(--line); }
.page-head h1 {
  font-size: clamp(34px, 5.5vw, 56px); font-weight: 900; line-height: 1.06;
  letter-spacing: -0.02em; max-width: 18ch;
}
.page-head .lead { margin-top: 20px; max-width: 62ch; color: var(--ink-2); }

/* --------------------------------------------------------------- stat strip */
.stats { display: flex; flex-wrap: wrap; gap: 14px 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-3); }
.stat { flex: 1 1 0; min-width: 150px; padding: 26px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 4vw, 38px); color: var(--ink); line-height: 1; letter-spacing: -0.01em; }
.stat .lbl { margin-top: 10px; font-family: var(--label); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--muted); }
@media (max-width: 680px) {
  .stat { flex-basis: 50%; min-width: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: none; }
}

/* --------------------------------------------------------------- pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pillar { background: var(--paper); padding: clamp(26px, 3vw, 38px); }
.pillar .n { font-family: var(--label); font-weight: 600; color: var(--gold); font-size: 14px; letter-spacing: .12em; }
.pillar h3 { margin: 14px 0 10px; font-size: 21px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.pillar p { color: var(--ink-2); font-size: 16px; }
.pillars.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .pillars, .pillars.cols-2 { grid-template-columns: 1fr; } }

/* Approach: numbered rows that stack */
.approach { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.approach .item { background: var(--paper); padding: clamp(24px, 3vw, 34px); display: flex; gap: 20px; }
.approach .item .n { font-family: var(--display); font-weight: 800; font-size: 26px; color: var(--gold); line-height: 1; min-width: 42px; }
.approach .item h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.approach .item p { font-size: 15.5px; color: var(--ink-2); margin: 0; }
@media (max-width: 720px) { .approach { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- feature row (media + text) */
.feature { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.feature.reverse .feature-media { order: 2; }
.feature-media {
  border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden;
  background: var(--paper-3); aspect-ratio: 16 / 10; position: relative;
}
.feature-media .yt {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; text-align: center; padding: 24px;
  background: radial-gradient(80% 70% at 50% 40%, rgba(231,199,102,0.08), transparent 70%);
}
.feature-media .play {
  width: 66px; height: 66px; border-radius: 50%;
  border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold);
}
.feature-media .play svg { width: 24px; height: 24px; }
.feature-media .yt .cap { font-family: var(--label); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: var(--muted); }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
}

/* --------------------------------------------------------------- what we do (editorial) */
.wwd { border-top: 1px solid var(--line); }
.wwd-item { padding: clamp(32px, 4.5vw, 52px) 0; border-bottom: 1px solid var(--line); }
.wwd-item h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; color: var(--ink); line-height: 1.14; letter-spacing: -0.01em; max-width: 24ch; }
.wwd-item p { margin-top: 16px; max-width: 64ch; color: var(--ink-2); }
.wwd-item .btn { margin-top: 22px; }

/* --------------------------------------------------------------- offer list (title | prose, hairline separated) */
.offer { border-top: 1px solid var(--line); margin-top: 8px; }
.offer-row { display: grid; grid-template-columns: 260px 1fr; gap: clamp(14px, 4vw, 56px); padding: clamp(26px, 3.4vw, 40px) 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.offer-row h3 { font-size: clamp(20px, 2.4vw, 25px); font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.offer-row .body p { color: var(--ink-2); margin: 0; max-width: 60ch; }
.offer-row .body p + p { margin-top: 12px; }
.offer-row .body .aside { margin-top: 14px; font-size: 15px; color: var(--muted); }
.offer-row .body .btn { margin-top: 20px; }
@media (max-width: 680px) { .offer-row { grid-template-columns: 1fr; gap: 10px; } }

/* Quiet end-of-page call, left aligned, no band */
.closing { border-top: 1px solid var(--line); padding-top: clamp(30px, 4vw, 44px); }
.closing h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; color: var(--ink); letter-spacing: -0.01em; max-width: 20ch; }
.closing p { margin-top: 14px; max-width: 56ch; color: var(--ink-2); }
.closing .actions { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }

/* --------------------------------------------------------------- pricing */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; }
.plan {
  border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--paper-3);
  padding: clamp(28px, 3.4vw, 40px); display: flex; flex-direction: column;
}
.plan.is-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }
.plan .plan-tag { font-size: 14px; color: var(--muted); margin-bottom: 12px; min-height: 14px; font-style: italic; }
.plan h3 { font-size: 24px; font-weight: 800; color: var(--ink); }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 4px; }
.plan .price .amt { font-family: var(--display); font-weight: 800; font-size: 44px; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.plan .price .per { font-size: 15px; color: var(--muted); }
.plan .blurb { color: var(--ink-2); font-size: 15.5px; margin: 12px 0 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 28px; }
.plan li { position: relative; padding: 9px 0 9px 28px; border-top: 1px solid var(--line); font-size: 15.5px; color: var(--ink-2); }
.plan li:first-child { border-top: none; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 15px; width: 13px; height: 8px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.plan-terms { margin: 2px 0 24px; }
.plan-terms .th { font-size: 13px; color: var(--muted); padding-bottom: 6px; }
.plan-terms .term { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 15px; }
.plan-terms .term .t { color: var(--ink-2); }
.plan-terms .term .t em { font-style: normal; font-family: var(--label); text-transform: uppercase; letter-spacing: .08em; font-size: 10.5px; color: var(--gold); margin-left: 9px; }
.plan-terms .term .p { color: var(--ink); font-weight: 600; white-space: nowrap; }
.plan .plan-foot { margin-top: auto; }
.plan .plan-foot .note { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }
.plan .btn { width: 100%; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }

.free-tier {
  margin-top: 20px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: clamp(24px, 3vw, 32px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.free-tier .ft-text h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.free-tier .ft-text p { color: var(--ink-2); font-size: 15.5px; margin: 0; max-width: 60ch; }

.perk { margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 13px; flex-wrap: wrap; text-align: center; }
.perk-logo { height: 36px; width: auto; flex: none; }
.perk p { margin: 0; color: var(--muted); font-size: 14.5px; }
.perk strong { color: var(--ink-2); font-weight: 700; }

/* --------------------------------------------------------------- quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.quote { background: var(--paper); padding: clamp(24px, 3vw, 32px); }
.quote .stars { color: var(--gold); letter-spacing: .16em; font-size: 13px; margin-bottom: 14px; }
.quote p { font-size: 15.5px; color: var(--ink); margin: 0 0 16px; }
.quote .who { font-family: var(--label); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; color: var(--muted); }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- notice */
.notice {
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  background: var(--paper-2); border-radius: var(--radius);
  padding: 22px 26px;
}
.notice p { font-size: 14.5px; color: var(--muted); margin: 0; }
.notice strong { color: var(--ink-2); font-weight: 700; }

/* --------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 0%, rgba(231,199,102,0.10), transparent 65%); pointer-events: none; }
.cta-band .container { position: relative; text-align: center; padding: clamp(52px, 7vw, 84px) var(--gutter); }
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--ink); letter-spacing: -0.01em; max-width: 20ch; margin: 0 auto; }
.cta-band p { margin: 16px auto 0; max-width: 56ch; color: var(--ink-2); }
.cta-band .actions { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 64px); }
.contact-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.contact-row { background: var(--paper); padding: 22px 26px; }
.contact-row .k { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.contact-row .v { font-size: 18px; color: var(--ink); }
.contact-row .v a { font-weight: 600; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- footer */
.site-footer { border-top: 1px solid var(--line); background: var(--paper); padding: clamp(48px, 6vw, 72px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 40ch; }
.footer-col h4 { font-family: var(--label); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--muted); font-weight: 500; margin: 0 0 16px; }
.footer-col a { display: block; color: var(--ink-2); font-weight: 600; font-size: 15px; padding: 6px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: clamp(36px, 5vw, 52px); padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--muted); margin: 0; max-width: 78ch; }
.footer-bottom .fine { max-width: 100%; }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* --------------------------------------------------------------- utilities */
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.prose p { max-width: 68ch; }
.prose h3 { color: var(--ink); font-size: 22px; font-weight: 700; margin: 36px 0 12px; letter-spacing: -0.01em; }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }

/* 404 */
.error-wrap { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px var(--gutter); }
.error-wrap .code { font-family: var(--display); font-weight: 900; font-size: clamp(80px, 16vw, 160px); color: var(--gold); line-height: 1; letter-spacing: -0.03em; }
.error-wrap h1 { font-size: clamp(24px, 4vw, 34px); margin: 8px 0 16px; }
.error-wrap p { color: var(--ink-2); max-width: 46ch; margin: 0 auto 28px; }

/* --------------------------------------------------------------- candlestick cursor */
#tt-cursor { position: fixed; top: 0; left: 0; width: 22px; height: 30px; margin: -15px 0 0 -11px;
  pointer-events: none; z-index: 9999; color: #d9c48f; opacity: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.55)); will-change: transform; transition: opacity .18s ease; }
#tt-cursor svg { display: block; overflow: visible; }
#tt-cursor .body { transform-box: fill-box; transform-origin: center; }
/* Only take over the pointer with a real mouse, and only when motion is welcome */
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.tt-cursor-on, html.tt-cursor-on * { cursor: none !important; }
  #tt-cursor .candle { animation: ttBob 1.9s ease-in-out infinite; }
  #tt-cursor .body { animation: ttTick 1.9s ease-in-out infinite; }
}
#tt-cursor.hover { color: var(--gold); }
#tt-cursor.hover .candle { transform: scale(1.28); }
#tt-cursor.hover .body { animation: none; fill: var(--gold); }
#tt-cursor.hover .wick { stroke: var(--gold); }
@keyframes ttBob { 0%, 100% { transform: translateY(3px); } 50% { transform: translateY(-3px); } }
@keyframes ttTick { 0%, 46% { fill: #d1584f; } 54%, 100% { fill: #46b06a; } }
