/* =========================================================================
   The Fitting Bay — design system
   Warm parchment base, deep forest-green primary, brushed-brass accent.
   Bold sans display paired with a classic serif body inverts the usual
   serif-display/sans-body pairing. Soft rounded panels with a thin brass
   top rule stand in for a clean, daylight-lit fitting studio rather than
   a dark workshop. System fonts only — no CDN, no framework.
   ========================================================================= */

:root {
  --tfb-cream-50: #fdfaf3;
  --tfb-cream-100: #f6f1e6;
  --tfb-cream-200: #efe6d2;
  --tfb-cream-300: #e4d7ba;
  --tfb-ink-900: #17241c;
  --tfb-ink-800: #223327;
  --tfb-ink-700: #34473a;
  --tfb-ink-500: #5a6b5d;
  --tfb-ink-400: #7c8c7f;
  --tfb-line: rgba(23, 36, 28, 0.12);
  --tfb-line-strong: rgba(23, 36, 28, 0.26);
  --tfb-green: #1f5c3f;
  --tfb-green-light: #2f7a55;
  --tfb-green-dark: #123825;
  --tfb-brass: #b8863a;
  --tfb-brass-light: #d4a659;
  --tfb-brass-dark: #8f6526;

  --tfb-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --tfb-body: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --tfb-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --tfb-wrap-w: 1200px;
  --tfb-radius: 16px;
  --tfb-radius-sm: 10px;
  --tfb-shadow-sm: 0 2px 10px rgba(23, 36, 28, 0.08);
  --tfb-shadow-md: 0 18px 38px rgba(23, 36, 28, 0.12);
  --tfb-shadow-brass: 0 14px 30px rgba(184, 134, 58, 0.22);
  --tfb-ease: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.tfb-body {
  margin: 0;
  font-family: var(--tfb-body);
  color: var(--tfb-ink-700);
  background: var(--tfb-cream-100);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--tfb-display);
  color: var(--tfb-ink-900);
  line-height: 1.16;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.012em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1.05em; color: var(--tfb-ink-700); }
address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.tfb-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--tfb-green);
  color: var(--tfb-cream-50);
  padding: 0.75em 1.25em;
  z-index: 1000;
  font-family: var(--tfb-display);
  font-weight: 700;
}
.tfb-skip:focus { left: 1em; top: 1em; }

.tfb-wrap {
  width: 100%;
  max-width: var(--tfb-wrap-w);
  margin: 0 auto;
  padding: 0 26px;
}

/* ---------- Buttons ---------- */
.tfb-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.9em 1.7em;
  font-family: var(--tfb-display);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--tfb-ease), box-shadow var(--tfb-ease), background var(--tfb-ease), color var(--tfb-ease), border-color var(--tfb-ease);
}
.tfb-btn--brass { background: var(--tfb-brass); color: var(--tfb-cream-50); }
.tfb-btn--brass:hover { background: var(--tfb-brass-light); transform: translateY(-2px); box-shadow: var(--tfb-shadow-brass); }
.tfb-btn--ghost { background: transparent; border-color: var(--tfb-line-strong); color: var(--tfb-ink-700); }
.tfb-btn--ghost:hover { border-color: var(--tfb-green); color: var(--tfb-green); transform: translateY(-2px); }
.tfb-btn--panel { background: var(--tfb-ink-900); color: var(--tfb-cream-50); }
.tfb-btn--panel:hover { background: var(--tfb-green-dark); transform: translateY(-2px); }
.tfb-btn--block { width: 100%; justify-content: center; }

/* ---------- Utility strip + header ---------- */
.tfb-topbar { background: var(--tfb-ink-900); color: var(--tfb-cream-100); font-size: 0.82rem; }
.tfb-topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; gap: 14px; flex-wrap: wrap; }
.tfb-topbar__item { opacity: 0.92; }
.tfb-topbar__phone { font-weight: 700; color: var(--tfb-brass-light); }
.tfb-topbar__phone:hover { text-decoration: underline; }

.tfb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--tfb-line);
}
.tfb-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }

.tfb-brand { display: flex; align-items: center; gap: 12px; }
.tfb-brand__mark { position: relative; width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: var(--tfb-green); overflow: hidden; }
.tfb-brand__lane { position: absolute; left: 8px; right: 8px; top: 50%; height: 2px; background: rgba(253, 250, 243, 0.5); transform: translateY(-50%); }
.tfb-brand__ball { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--tfb-brass-light); top: 50%; right: 9px; transform: translateY(-50%); box-shadow: 0 0 0 3px rgba(212, 166, 89, 0.25); }
.tfb-brand__text { display: flex; flex-direction: column; line-height: 1.24; }
.tfb-brand__name { font-family: var(--tfb-display); font-weight: 800; font-size: 1.14rem; color: var(--tfb-ink-900); }
.tfb-brand__tag { font-size: 0.7rem; color: var(--tfb-ink-400); letter-spacing: 0.03em; }

.tfb-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.tfb-toggle span { width: 22px; height: 2px; background: var(--tfb-ink-900); transition: transform var(--tfb-ease), opacity var(--tfb-ease); }

.tfb-nav { display: flex; align-items: center; gap: 24px; }
.tfb-nav__list { display: flex; align-items: center; gap: 18px; }
.tfb-nav__item a { font-family: var(--tfb-display); font-size: 0.9rem; color: var(--tfb-ink-700); padding: 6px 0; border-bottom: 2px solid transparent; transition: color var(--tfb-ease), border-color var(--tfb-ease); }
.tfb-nav__item a:hover, .tfb-nav__item.is-active a { color: var(--tfb-green); border-color: var(--tfb-brass); }
.tfb-nav__cta { white-space: nowrap; }

@media (max-width: 940px) {
  .tfb-topbar__item:first-child { display: none; }
  .tfb-toggle { display: flex; }
  .tfb-nav {
    position: fixed; inset: 0 0 auto 0; top: 0;
    background: var(--tfb-cream-50);
    flex-direction: column; align-items: flex-start;
    padding: 96px 26px 28px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--tfb-ease), opacity var(--tfb-ease), visibility var(--tfb-ease);
    height: 100vh;
    overflow-y: auto;
  }
  .tfb-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .tfb-nav__list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .tfb-nav__item { width: 100%; }
  .tfb-nav__item a { display: block; padding: 14px 0; font-size: 1.08rem; border-bottom: 1px solid var(--tfb-line); }
  .tfb-nav__cta { margin-top: 18px; }
  .tfb-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .tfb-toggle.is-active span:nth-child(2) { opacity: 0; }
  .tfb-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.tfb-hero {
  position: relative;
  padding: 68px 0 82px;
  background:
    radial-gradient(ellipse at 84% -12%, rgba(184, 134, 58, 0.14), transparent 55%),
    var(--tfb-cream-100);
  border-bottom: 1px solid var(--tfb-line);
}
.tfb-hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 54px; align-items: center; }
.tfb-hero__eyebrow { display: inline-block; margin-bottom: 16px; font-family: var(--tfb-display); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tfb-brass-dark); font-weight: 700; }
.tfb-hero__lede { font-size: 1.08rem; max-width: 54ch; }
.tfb-hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .tfb-hero__grid { grid-template-columns: 1fr; }
}

/* ---------- Face-contact map (hero + reused across pages) ---------- */
.tfb-facemap {
  background: var(--tfb-cream-50);
  border: 1px solid var(--tfb-line-strong);
  border-radius: var(--tfb-radius);
  padding: 24px;
  box-shadow: var(--tfb-shadow-md);
}
.tfb-facemap__head { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--tfb-display); font-size: 0.78rem; color: var(--tfb-ink-400); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.tfb-facemap__live { color: var(--tfb-brass-dark); }
.tfb-facemap__grid {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--tfb-line-strong);
  border-radius: var(--tfb-radius-sm);
  overflow: hidden;
  background:
    linear-gradient(var(--tfb-line) 1px, transparent 1px) 0 0 / 100% 50%,
    linear-gradient(90deg, var(--tfb-line) 1px, transparent 1px) 0 0 / 50% 100%;
}
.tfb-facemap__axis-label { position: absolute; font-family: var(--tfb-display); font-size: 0.66rem; color: var(--tfb-ink-400); text-transform: uppercase; letter-spacing: 0.06em; }
.tfb-facemap__axis-label--top { top: 8px; left: 50%; transform: translateX(-50%); }
.tfb-facemap__axis-label--bottom { bottom: 8px; left: 50%; transform: translateX(-50%); }
.tfb-facemap__axis-label--left { left: 8px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: left top; }
.tfb-facemap__axis-label--right { right: 8px; top: 50%; transform: translateY(-50%); }
.tfb-facemap__mark {
  position: absolute;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--tfb-green);
  box-shadow: 0 0 0 5px rgba(31, 92, 63, 0.16);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 700ms ease, transform 700ms ease;
}
.tfb-facemap.is-marked .tfb-facemap__mark { opacity: 1; transform: scale(1); }
.tfb-facemap__legend { margin-top: 16px; display: grid; gap: 6px; font-family: var(--tfb-display); font-size: 0.8rem; color: var(--tfb-ink-500); }

/* ---------- Sections ---------- */
.tfb-section { padding: 74px 0; }
.tfb-section--alt { background: var(--tfb-cream-200); border-top: 1px solid var(--tfb-line); border-bottom: 1px solid var(--tfb-line); }
.tfb-section__head { max-width: 680px; margin-bottom: 38px; }
.tfb-eyebrow { display: inline-block; margin-bottom: 10px; font-family: var(--tfb-display); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tfb-brass-dark); font-weight: 700; }
.tfb-center { text-align: center; margin-left: auto; margin-right: auto; }
.tfb-text-center { text-align: center; }

.tfb-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
@media (max-width: 860px) { .tfb-two-col { grid-template-columns: 1fr; } }

.tfb-grid { display: grid; gap: 20px; }
.tfb-grid--2 { grid-template-columns: repeat(2, 1fr); }
.tfb-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tfb-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .tfb-grid--3, .tfb-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tfb-grid--2, .tfb-grid--3, .tfb-grid--4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.tfb-card {
  background: var(--tfb-cream-50);
  border: 1px solid var(--tfb-line);
  border-top: 3px solid var(--tfb-brass);
  border-radius: var(--tfb-radius);
  padding: 24px;
  box-shadow: var(--tfb-shadow-sm);
  transition: border-color var(--tfb-ease), transform var(--tfb-ease), box-shadow var(--tfb-ease);
}
.tfb-card__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tfb-green);
  color: var(--tfb-cream-50);
  border-radius: 9px;
  font-family: var(--tfb-display);
  font-weight: 800;
  margin-bottom: 14px;
}
.tfb-card__link { display: inline-block; margin-top: 6px; font-family: var(--tfb-display); color: var(--tfb-green); font-weight: 700; font-size: 0.86rem; border-bottom: 1px solid transparent; transition: border-color var(--tfb-ease); }
.tfb-card__link:hover { border-color: var(--tfb-green); }

.tfb-rise { opacity: 1; transform: none; }
html.js-on .tfb-rise { opacity: 0; transform: translateY(16px); transition: opacity 540ms ease, transform 540ms ease; }
html.js-on .tfb-rise.is-shown { opacity: 1; transform: none; }

/* ---------- Stats strip ---------- */
.tfb-stats { padding: 38px 0; background: var(--tfb-ink-900); border-top: 1px solid var(--tfb-line); border-bottom: 1px solid var(--tfb-line); }
.tfb-stats__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 26px; }
.tfb-stat { flex: 1; min-width: 150px; text-align: center; border-left: 1px solid rgba(253, 250, 243, 0.14); padding-left: 26px; }
.tfb-stat:first-child { border-left: none; padding-left: 0; }
.tfb-stat__num { display: block; font-family: var(--tfb-display); font-size: 1.85rem; font-weight: 800; color: var(--tfb-brass-light); }
.tfb-stat__label { font-family: var(--tfb-display); font-size: 0.8rem; color: rgba(253, 250, 243, 0.72); text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 700px) { .tfb-stat { border-left: none; padding-left: 0; text-align: left; } }

/* ---------- Bars ---------- */
.tfb-bars { display: flex; flex-direction: column; gap: 18px; }
.tfb-bar-row__label { display: flex; justify-content: space-between; font-family: var(--tfb-display); font-size: 0.84rem; color: var(--tfb-ink-500); margin-bottom: 7px; }
.tfb-bar-track { width: 100%; height: 8px; background: var(--tfb-cream-200); border-radius: 99px; overflow: hidden; }
.tfb-bar-fill { height: 100%; background: var(--tfb-green); border-radius: 99px; }
.tfb-bar-fill--muted { background: var(--tfb-cream-300); }

/* ---------- Testimonials ---------- */
.tfb-testimonial { background: var(--tfb-cream-50); border: 1px solid var(--tfb-line); border-radius: var(--tfb-radius); padding: 22px; box-shadow: var(--tfb-shadow-sm); }
.tfb-stars { color: var(--tfb-brass); letter-spacing: 2px; display: block; margin-bottom: 10px; }
.tfb-testimonial__author { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.tfb-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--tfb-green); color: var(--tfb-cream-50); display: flex; align-items: center; justify-content: center; font-family: var(--tfb-display); font-weight: 700; font-size: 0.8rem; }
.tfb-testimonial__author strong { display: block; font-family: var(--tfb-display); color: var(--tfb-ink-900); font-size: 0.9rem; }
.tfb-testimonial__author span { font-size: 0.76rem; color: var(--tfb-ink-400); }

/* ---------- Brand tiles ---------- */
.tfb-brand-tile { background: var(--tfb-cream-50); border: 1px solid var(--tfb-line); border-radius: var(--tfb-radius-sm); padding: 18px; text-align: center; }
.tfb-brand-tile__mark { width: 32px; height: 32px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; background: var(--tfb-ink-900); color: var(--tfb-brass-light); font-family: var(--tfb-display); font-weight: 700; font-size: 0.76rem; border-radius: 8px; }
.tfb-brand-tile strong { display: block; font-family: var(--tfb-display); color: var(--tfb-ink-900); margin-bottom: 4px; }
.tfb-brand-tile span { font-size: 0.76rem; color: var(--tfb-ink-400); display: block; margin-bottom: 10px; }

/* ---------- CTA band ---------- */
.tfb-cta { padding: 58px 0; background: linear-gradient(120deg, var(--tfb-green-dark), var(--tfb-green) 75%); border-top: 1px solid var(--tfb-line); }
.tfb-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.tfb-cta__copy h2 { color: var(--tfb-cream-50); margin-bottom: 6px; }
.tfb-cta__copy p { margin: 0; color: rgba(253, 250, 243, 0.86); }
.tfb-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page header (interior pages) ---------- */
.tfb-page-header { padding: 54px 0 38px; border-bottom: 1px solid var(--tfb-line); background: var(--tfb-cream-200); }
.tfb-breadcrumb { display: inline-block; margin-bottom: 12px; font-family: var(--tfb-display); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tfb-brass-dark); font-weight: 700; }
.tfb-lede { font-size: 1.04rem; max-width: 60ch; }
.tfb-article-header .tfb-lede { max-width: 52ch; }

/* ---------- FAQ ---------- */
.tfb-faq-item { border-bottom: 1px solid var(--tfb-line); padding: 18px 0; }
.tfb-faq-item summary { cursor: pointer; font-family: var(--tfb-display); font-weight: 700; color: var(--tfb-ink-900); font-size: 1rem; list-style: none; }
.tfb-faq-item summary::-webkit-details-marker { display: none; }
.tfb-faq-item summary::before { content: '+'; color: var(--tfb-brass-dark); margin-right: 12px; font-weight: 800; }
.tfb-faq-item[open] summary::before { content: '\2212'; }
.tfb-faq-item p { margin-top: 12px; margin-bottom: 0; }

/* ---------- Pricing ---------- */
.tfb-price { font-family: var(--tfb-display); font-size: 2rem; font-weight: 800; color: var(--tfb-ink-900); margin: 14px 0; }
.tfb-price span { font-family: var(--tfb-body); font-size: 0.9rem; font-weight: 400; color: var(--tfb-ink-400); }
.tfb-pricing-card ul { margin: 16px 0 20px; display: grid; gap: 8px; }
.tfb-pricing-card ul li { padding-left: 20px; position: relative; font-size: 0.92rem; color: var(--tfb-ink-700); }
.tfb-pricing-card ul li::before { content: '\2013'; position: absolute; left: 0; color: var(--tfb-brass-dark); }
.tfb-pricing-card--featured { border-top-color: var(--tfb-green); box-shadow: var(--tfb-shadow-brass); }

.tfb-table-wrap { overflow-x: auto; border: 1px solid var(--tfb-line); border-radius: var(--tfb-radius-sm); }
.tfb-table { width: 100%; border-collapse: collapse; }
.tfb-table th, .tfb-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--tfb-line); font-size: 0.92rem; }
.tfb-table th { background: var(--tfb-cream-200); font-family: var(--tfb-display); color: var(--tfb-ink-900); font-weight: 700; }
.tfb-table tr:last-child td { border-bottom: none; }

/* ---------- Error page ---------- */
.tfb-error { padding: 106px 0; text-align: center; }
.tfb-error-code { font-family: var(--tfb-display); font-size: 5.2rem; font-weight: 800; color: var(--tfb-brass); display: block; line-height: 1; margin-bottom: 14px; }

/* ---------- Team ---------- */
.tfb-team-card { text-align: center; }
.tfb-team-photo { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 14px; background: var(--tfb-green); color: var(--tfb-cream-50); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--tfb-display); }
.tfb-team-role { display: block; font-family: var(--tfb-display); font-size: 0.76rem; color: var(--tfb-brass-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; font-weight: 700; }

/* ---------- Forms ---------- */
.tfb-form-card { background: var(--tfb-cream-50); border: 1px solid var(--tfb-line-strong); border-radius: var(--tfb-radius); padding: 28px; box-shadow: var(--tfb-shadow-sm); }
.tfb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .tfb-form-row { grid-template-columns: 1fr; } }
.tfb-form-field { margin-bottom: 16px; }
.tfb-form-field label { display: block; font-family: var(--tfb-display); font-size: 0.82rem; color: var(--tfb-ink-500); margin-bottom: 6px; }
.tfb-form-field input, .tfb-form-field select, .tfb-form-field textarea {
  width: 100%;
  background: var(--tfb-cream-50);
  border: 1px solid var(--tfb-line-strong);
  border-radius: 8px;
  color: var(--tfb-ink-900);
  padding: 11px 13px;
  font-family: var(--tfb-body);
  font-size: 0.94rem;
}
.tfb-form-field input:focus, .tfb-form-field select:focus, .tfb-form-field textarea:focus { outline: none; border-color: var(--tfb-green); }
.tfb-form-note { font-size: 0.8rem; color: var(--tfb-ink-400); }

.tfb-check-list { display: grid; gap: 10px; margin: 18px 0; }
.tfb-check-list li { padding-left: 26px; position: relative; }
.tfb-check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--tfb-green); font-weight: 800; }

/* ---------- Locate panel (pure CSS, no map embed) ---------- */
.tfb-locate {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--tfb-cream-50);
  border: 1px solid var(--tfb-line-strong);
  border-radius: var(--tfb-radius);
  overflow: hidden;
}
.tfb-locate--lg { aspect-ratio: 16 / 11; }
.tfb-locate__grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(var(--tfb-line) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, var(--tfb-line) 1px, transparent 1px) 0 0 / 32px 32px;
}
.tfb-locate__frame {
  position: absolute; inset: 16px;
  border: 1px dashed var(--tfb-line-strong);
  border-radius: 10px;
}
.tfb-locate__pin {
  position: absolute; top: 44%; left: 54%;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--tfb-green);
  box-shadow: 0 0 0 6px rgba(31, 92, 63, 0.16);
}
.tfb-locate__label { position: absolute; bottom: 14px; left: 14px; font-family: var(--tfb-display); font-size: 0.76rem; color: var(--tfb-ink-500); text-transform: uppercase; letter-spacing: 0.05em; }
.tfb-locate__coords { position: absolute; bottom: 14px; right: 14px; font-family: var(--tfb-mono); font-size: 0.72rem; color: var(--tfb-ink-500); }

/* ---------- Timeline (fitting process) ---------- */
.tfb-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; counter-reset: tfbstep; }
@media (max-width: 900px) { .tfb-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tfb-timeline { grid-template-columns: 1fr; } }
.tfb-timeline__item { border-top: 3px solid var(--tfb-brass); padding-top: 18px; counter-increment: tfbstep; }
.tfb-timeline__num::before { content: counter(tfbstep, decimal-leading-zero); font-family: var(--tfb-mono); color: var(--tfb-green); font-size: 0.84rem; display: block; margin-bottom: 10px; }

/* ---------- Blog / articles ---------- */
.tfb-post-card { display: flex; flex-direction: column; }
.tfb-post-meta { display: inline-block; margin-bottom: 10px; font-family: var(--tfb-display); font-size: 0.74rem; color: var(--tfb-brass-dark); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.tfb-article { max-width: 760px; }
.tfb-article h2 { margin-top: 1.55em; }
.tfb-article blockquote { border-left: 3px solid var(--tfb-brass); padding-left: 20px; margin: 24px 0; color: var(--tfb-ink-900); font-style: italic; }

/* ---------- Spec rows (reused on driver/iron/etc pages) ---------- */
.tfb-spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--tfb-line); font-size: 0.9rem; }
.tfb-spec-row span:first-child { color: var(--tfb-ink-400); }
.tfb-spec-row span:last-child { font-family: var(--tfb-display); color: var(--tfb-ink-900); font-weight: 700; }

/* ---------- Footer ---------- */
.tfb-footer { background: var(--tfb-ink-900); border-top: 1px solid var(--tfb-line); padding-top: 54px; color: rgba(253, 250, 243, 0.82); }
.tfb-footer .tfb-brand__name { color: var(--tfb-cream-50); }
.tfb-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 38px; }
@media (max-width: 900px) { .tfb-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tfb-footer__top { grid-template-columns: 1fr; } }
.tfb-footer__col h3 { font-family: var(--tfb-display); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(253, 250, 243, 0.6); margin-bottom: 14px; }
.tfb-footer__brand p { font-size: 0.9rem; color: rgba(253, 250, 243, 0.78); }
.tfb-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tfb-tag { font-family: var(--tfb-display); font-size: 0.7rem; padding: 5px 10px; border: 1px solid rgba(253, 250, 243, 0.22); border-radius: 999px; color: rgba(253, 250, 243, 0.7); }
.tfb-footer__col address, .tfb-footer__col p { font-size: 0.87rem; margin-bottom: 6px; color: rgba(253, 250, 243, 0.78); }
.tfb-footer__col a { color: rgba(253, 250, 243, 0.85); }
.tfb-hours { display: grid; gap: 8px; }
.tfb-hours li { display: flex; justify-content: space-between; font-size: 0.85rem; }
.tfb-hours li span:first-child { color: rgba(253, 250, 243, 0.55); }
.tfb-footer__links { display: grid; gap: 8px; }
.tfb-footer__links a { font-size: 0.87rem; color: rgba(253, 250, 243, 0.78); }
.tfb-footer__links a:hover { color: var(--tfb-brass-light); }
.tfb-footer__bottom { border-top: 1px solid rgba(253, 250, 243, 0.12); padding: 20px 0; }
.tfb-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.76rem; color: rgba(253, 250, 243, 0.5); }
