/* Tour Bay Golf — original stylesheet. Warm parchment theme, forest/copper accents. */

:root {
  --tbg-cream-50: #faf6ee;
  --tbg-cream-100: #f2ead9;
  --tbg-parchment: #ece0c6;
  --tbg-line: rgba(31, 26, 18, 0.12);
  --tbg-line-strong: rgba(31, 26, 18, 0.26);
  --tbg-ink-900: #1c1712;
  --tbg-ink-700: #332a1f;
  --tbg-forest-900: #12281f;
  --tbg-forest-700: #1f4d3a;
  --tbg-forest-500: #2f6b4f;
  --tbg-copper: #b5652f;
  --tbg-copper-light: #d68a52;
  --tbg-copper-dark: #8c4c22;
  --tbg-slate-700: #4a453b;
  --tbg-slate-500: #6f6858;
  --tbg-slate-300: #9c9484;
  --tbg-white: #fffdf8;

  --tbg-font-display: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --tbg-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --tbg-font-mono: "Courier New", Courier, monospace;

  --tbg-wrap-w: 1160px;
  --tbg-radius: 12px;
  --tbg-radius-sm: 7px;
  --tbg-shadow-sm: 0 2px 10px rgba(28, 23, 18, 0.08);
  --tbg-shadow-md: 0 16px 34px rgba(28, 23, 18, 0.14);
  --tbg-shadow-copper: 0 14px 30px rgba(181, 101, 47, 0.22);
  --tbg-ease: 190ms ease-out;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.tbg-body {
  margin: 0;
  font-family: var(--tbg-font-body);
  color: var(--tbg-slate-700);
  background: var(--tbg-cream-50);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

button { font-family: inherit; }

h1, h2, h3 {
  font-family: var(--tbg-font-display);
  color: var(--tbg-ink-900);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
h3 { font-size: 1.18rem; margin-bottom: 0.4em; }
p { margin: 0 0 1em; color: var(--tbg-slate-700); }
a { color: inherit; }

.tbg-skip {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--tbg-forest-700); color: var(--tbg-white);
  padding: 10px 18px; border-radius: 0 0 8px 0;
}
.tbg-skip:focus { left: 0; }

.tbg-wrap {
  max-width: var(--tbg-wrap-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.tbg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--tbg-font-body);
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--tbg-ease), box-shadow var(--tbg-ease), background var(--tbg-ease), color var(--tbg-ease), border-color var(--tbg-ease);
}
.tbg-btn--copper { background: var(--tbg-copper); color: var(--tbg-white); }
.tbg-btn--copper:hover { background: var(--tbg-copper-dark); transform: translateY(-2px); box-shadow: var(--tbg-shadow-copper); }
.tbg-btn--ghost { background: transparent; border-color: var(--tbg-line-strong); color: var(--tbg-ink-900); }
.tbg-btn--ghost:hover { border-color: var(--tbg-forest-700); color: var(--tbg-forest-700); transform: translateY(-2px); }
.tbg-btn--panel { background: var(--tbg-forest-700); color: var(--tbg-white); }
.tbg-btn--panel:hover { background: var(--tbg-forest-900); transform: translateY(-2px); }
.tbg-btn--block { display: flex; width: 100%; }

/* Top bar */
.tbg-topbar { background: var(--tbg-ink-900); color: var(--tbg-cream-100); }
.tbg-topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 24px;
  font-size: 0.82rem;
  font-family: var(--tbg-font-mono);
  flex-wrap: wrap; gap: 6px;
}
.tbg-topbar__phone a { color: var(--tbg-copper-light); text-decoration: none; font-weight: 600; }
.tbg-topbar__phone a:hover { text-decoration: underline; }
.tbg-topbar__note { color: var(--tbg-slate-300); }

/* Masthead */
.tbg-mast {
  background: var(--tbg-white);
  border-bottom: 1px solid var(--tbg-line);
  position: sticky; top: 0; z-index: 40;
}
.tbg-mast__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.tbg-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.tbg-brand__mark {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--tbg-forest-700);
  color: var(--tbg-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tbg-font-display);
  font-weight: 700; font-size: 1.05rem;
}
.tbg-brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.tbg-brand__name { color: var(--tbg-ink-900); font-size: 1.15rem; font-weight: 700; font-family: var(--tbg-font-display); }
.tbg-brand__tag { color: var(--tbg-slate-500); font-size: 0.76rem; letter-spacing: 0.02em; }

.tbg-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--tbg-line-strong); border-radius: 8px;
  cursor: pointer;
}
.tbg-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--tbg-ink-900); border-radius: 2px; }

.tbg-nav { display: flex; align-items: center; gap: 28px; }
.tbg-nav__list { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.tbg-nav__item a {
  text-decoration: none; color: var(--tbg-slate-700); font-size: 0.94rem; font-weight: 600;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: color var(--tbg-ease), border-color var(--tbg-ease);
}
.tbg-nav__item a:hover, .tbg-nav__item.is-here a { color: var(--tbg-forest-700); border-color: var(--tbg-copper); }
.tbg-nav__cta { padding: 10px 20px; }

/* Main */
.tbg-main { display: block; }

/* Hero */
.tbg-hero { padding: 56px 0 40px; background: linear-gradient(180deg, var(--tbg-cream-100), var(--tbg-cream-50)); }
.tbg-hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 52px; align-items: center; }
.tbg-hero__eyebrow {
  display: inline-block; font-family: var(--tbg-font-mono); font-size: 0.8rem;
  color: var(--tbg-forest-700); background: rgba(47, 107, 79, 0.1);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.tbg-hero__lede { font-size: 1.08rem; max-width: 52ch; }
.tbg-hero__actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }

.tbg-readout {
  background: var(--tbg-ink-900);
  color: var(--tbg-cream-100);
  border-radius: var(--tbg-radius);
  padding: 24px;
  box-shadow: var(--tbg-shadow-md);
}
.tbg-readout__head { display: flex; justify-content: space-between; align-items: center; font-family: var(--tbg-font-mono); font-size: 0.82rem; color: var(--tbg-slate-300); margin-bottom: 16px; }
.tbg-readout__dot { color: var(--tbg-copper-light); position: relative; padding-left: 14px; }
.tbg-readout__dot::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--tbg-copper-light);
  box-shadow: 0 0 0 4px rgba(214, 138, 82, 0.25);
}
.tbg-readout__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tbg-readout__cell {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: var(--tbg-radius-sm);
  padding: 14px 16px;
}
.tbg-readout__label { display: block; font-size: 0.76rem; color: var(--tbg-slate-300); margin-bottom: 6px; }
.tbg-readout__val { font-family: var(--tbg-font-display); font-size: 1.5rem; font-weight: 700; color: var(--tbg-white); }
.tbg-readout__val small { font-size: 0.9rem; font-weight: 400; color: var(--tbg-slate-300); }
.tbg-readout__foot { margin-top: 16px; font-size: 0.8rem; color: var(--tbg-slate-300); border-top: 1px solid rgba(255,253,248,0.1); padding-top: 12px; }

/* Ribbon */
.tbg-ribbon { background: var(--tbg-forest-700); color: var(--tbg-white); padding: 28px 0; }
.tbg-ribbon__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.tbg-ribbon__num { display: block; font-family: var(--tbg-font-display); font-size: 1.7rem; font-weight: 700; }
.tbg-ribbon__label { display: block; font-size: 0.8rem; color: rgba(255,253,248,0.75); margin-top: 4px; }

/* Sections */
.tbg-section { padding: 64px 0; }
.tbg-section--alt { background: var(--tbg-cream-100); }
.tbg-section__head { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.tbg-eyebrow { display: inline-block; color: var(--tbg-copper); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.tbg-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.tbg-text-center { text-align: center; }

/* Cards */
.tbg-grid { display: grid; gap: 22px; }
.tbg-grid--2 { grid-template-columns: repeat(2, 1fr); }
.tbg-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tbg-grid--4 { grid-template-columns: repeat(4, 1fr); }

.tbg-card {
  background: var(--tbg-white);
  border: 1px solid var(--tbg-line);
  border-left: 3px solid var(--tbg-copper);
  border-radius: var(--tbg-radius);
  padding: 26px;
  box-shadow: var(--tbg-shadow-sm);
}
.tbg-card__tag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--tbg-forest-700); color: var(--tbg-white);
  font-family: var(--tbg-font-mono); font-weight: 700; font-size: 0.85rem;
  margin-bottom: 14px;
}
.tbg-card__link { display: inline-block; margin-top: 10px; color: var(--tbg-forest-700); font-weight: 700; text-decoration: none; }
.tbg-card__link:hover { color: var(--tbg-copper); }

.tbg-rise { animation: tbg-fade-up 480ms ease-out both; }
@keyframes tbg-fade-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Bars */
.tbg-bars { display: flex; flex-direction: column; gap: 16px; }
.tbg-bar-row__label { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 6px; color: var(--tbg-slate-700); }
.tbg-bar-track { height: 8px; background: var(--tbg-cream-100); border-radius: 999px; overflow: hidden; }
.tbg-bar-fill { height: 100%; background: var(--tbg-copper); border-radius: 999px; }
.tbg-bar-fill--muted { background: var(--tbg-slate-300); }

/* Timeline */
.tbg-vtimeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tbg-vstep { position: relative; padding-top: 8px; border-top: 3px solid var(--tbg-copper); }
.tbg-vstep__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--tbg-ink-900); color: var(--tbg-white);
  font-family: var(--tbg-font-mono); font-weight: 700; font-size: 0.85rem;
  margin-bottom: 12px;
}

/* Brand tiles */
.tbg-brand-tile {
  background: var(--tbg-white); border: 1px solid var(--tbg-line); border-radius: var(--tbg-radius);
  padding: 22px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.tbg-brand-tile__mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--tbg-cream-100); color: var(--tbg-forest-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tbg-font-mono); font-weight: 700; margin-bottom: 6px;
}
.tbg-brand-tile span { color: var(--tbg-slate-500); font-size: 0.82rem; }

/* Testimonials */
.tbg-testimonial { background: var(--tbg-white); border: 1px solid var(--tbg-line); border-radius: var(--tbg-radius); padding: 24px; }
.tbg-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.tbg-rating__track { width: 90px; height: 6px; background: var(--tbg-cream-100); border-radius: 999px; overflow: hidden; }
.tbg-rating__fill { height: 100%; background: var(--tbg-copper); }
.tbg-rating__num { font-family: var(--tbg-font-mono); font-size: 0.85rem; color: var(--tbg-slate-500); }
.tbg-testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.tbg-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--tbg-forest-700); color: var(--tbg-white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem;
}
.tbg-testimonial__author strong { display: block; color: var(--tbg-ink-900); }
.tbg-testimonial__author span { font-size: 0.8rem; color: var(--tbg-slate-500); }

/* CTA band */
.tbg-cta { background: var(--tbg-ink-900); color: var(--tbg-white); padding: 60px 0; }
.tbg-cta__inner { text-align: center; max-width: 620px; margin: 0 auto; }
.tbg-cta h2 { color: var(--tbg-white); }
.tbg-cta p { color: var(--tbg-slate-300); }
.tbg-cta__actions { display: flex; gap: 14px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }

/* Footer */
.tbg-footer { background: var(--tbg-cream-100); border-top: 1px solid var(--tbg-line); padding: 52px 0 0; }
.tbg-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.tbg-footer__col h3 { font-size: 0.95rem; color: var(--tbg-ink-900); margin-bottom: 14px; }
.tbg-footer__brand p { font-size: 0.9rem; }
.tbg-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tbg-chip { font-size: 0.74rem; background: var(--tbg-white); border: 1px solid var(--tbg-line); border-radius: 999px; padding: 5px 12px; color: var(--tbg-forest-700); }
.tbg-hours { list-style: none; margin: 0; padding: 0; font-size: 0.86rem; }
.tbg-hours li { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--tbg-line); color: var(--tbg-slate-700); }
.tbg-footer__links { list-style: none; margin: 0; padding: 0; }
.tbg-footer__links li { margin-bottom: 8px; }
.tbg-footer__links a { text-decoration: none; color: var(--tbg-slate-700); font-size: 0.88rem; }
.tbg-footer__links a:hover { color: var(--tbg-copper); }
.tbg-footer__bottom { border-top: 1px solid var(--tbg-line); padding: 16px 0; }
.tbg-footer__bottom-inner { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--tbg-slate-500); flex-wrap: wrap; gap: 6px; }
address { font-style: normal; color: var(--tbg-slate-700); font-size: 0.9rem; }

/* Page header */
.tbg-page-header { padding: 48px 0 32px; background: var(--tbg-cream-100); }
.tbg-crumb { display: block; color: var(--tbg-copper); font-family: var(--tbg-font-mono); font-size: 0.8rem; margin-bottom: 10px; }
.tbg-lede { font-size: 1.05rem; max-width: 60ch; }

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

/* Pricing */
.tbg-pricing-card { display: flex; flex-direction: column; }
.tbg-pricing-card--featured { border-color: var(--tbg-copper); border-width: 2px; box-shadow: var(--tbg-shadow-copper); }
.tbg-price { font-family: var(--tbg-font-display); font-size: 2rem; font-weight: 700; color: var(--tbg-ink-900); margin: 8px 0 12px; }
.tbg-price span { font-size: 0.9rem; color: var(--tbg-slate-500); font-weight: 400; }
.tbg-pricing-card ul { margin: 0 0 20px; padding-left: 20px; font-size: 0.9rem; color: var(--tbg-slate-700); }
.tbg-pricing-card ul li { margin-bottom: 6px; }

/* Team */
.tbg-team-card { display: flex; flex-direction: column; }
.tbg-team-photo {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--tbg-forest-700); color: var(--tbg-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tbg-font-display); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 12px;
}
.tbg-team-role { display: block; color: var(--tbg-copper); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }

/* FAQ */
.tbg-faq-item {
  background: var(--tbg-white); border: 1px solid var(--tbg-line); border-radius: var(--tbg-radius-sm);
  padding: 16px 20px; margin-bottom: 12px;
}
.tbg-faq-item summary { font-weight: 700; color: var(--tbg-ink-900); cursor: pointer; }
.tbg-faq-item p { margin-top: 10px; margin-bottom: 0; }

/* Forms */
.tbg-form-card { background: var(--tbg-white); border: 1px solid var(--tbg-line); border-radius: var(--tbg-radius); padding: 28px; }
.tbg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tbg-form-field { margin-bottom: 16px; }
.tbg-form-field label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--tbg-ink-900); margin-bottom: 6px; }
.tbg-form-field input, .tbg-form-field select, .tbg-form-field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--tbg-line-strong); border-radius: var(--tbg-radius-sm);
  font-family: inherit; font-size: 0.94rem; background: var(--tbg-cream-50); color: var(--tbg-ink-900);
}
.tbg-form-field input:focus, .tbg-form-field select:focus, .tbg-form-field textarea:focus {
  outline: none; border-color: var(--tbg-copper); box-shadow: 0 0 0 3px rgba(181, 101, 47, 0.14);
}
.tbg-form-note { font-size: 0.82rem; color: var(--tbg-slate-500); }
.tbg-check-list { list-style: none; margin: 0; padding: 0; }
.tbg-check-list li { padding-left: 26px; position: relative; margin-bottom: 10px; font-size: 0.92rem; }
.tbg-check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--tbg-copper); font-weight: 700; }

/* Locate panel */
.tbg-locate {
  position: relative; border-radius: var(--tbg-radius); background: var(--tbg-forest-900);
  min-height: 200px; overflow: hidden; padding: 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.tbg-locate--lg { min-height: 300px; }
.tbg-locate__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,253,248,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,253,248,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.tbg-locate__pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 16px; height: 16px; border-radius: 50% 50% 50% 0; transform-origin: bottom left;
  background: var(--tbg-copper-light);
  box-shadow: 0 0 0 8px rgba(214, 138, 82, 0.18);
}
.tbg-locate__label { position: relative; z-index: 1; color: var(--tbg-white); font-weight: 700; font-size: 0.9rem; }
.tbg-locate__coords { position: relative; z-index: 1; color: var(--tbg-slate-300); font-family: var(--tbg-font-mono); font-size: 0.78rem; }

/* Error page */
.tbg-error { padding: 100px 0; text-align: center; }
.tbg-error-code { display: block; font-family: var(--tbg-font-display); font-size: 5rem; color: var(--tbg-copper); font-weight: 700; margin-bottom: 8px; }

/* Blog */
.tbg-post-card { display: flex; flex-direction: column; }
.tbg-post-meta { color: var(--tbg-copper); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.tbg-article-header { max-width: 760px; }
.tbg-article { max-width: 720px; margin: 0 auto; font-size: 1.02rem; }
.tbg-article h2 { margin-top: 1.6em; }
.tbg-article blockquote {
  border-left: 3px solid var(--tbg-copper); margin: 1.6em 0; padding: 0.4em 0 0.4em 20px;
  font-style: italic; color: var(--tbg-ink-900); font-family: var(--tbg-font-display);
}

/* Group events metric row */
.tbg-hero__panel-title span { font-family: var(--tbg-font-mono); font-size: 0.82rem; color: var(--tbg-slate-500); text-transform: uppercase; letter-spacing: 0.03em; }
.tbg-metric-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--tbg-line); font-size: 0.9rem; }
.tbg-metric-row:last-child { border-bottom: none; }

/* Responsive */
@media (max-width: 900px) {
  .tbg-hero__grid { grid-template-columns: 1fr; }
  .tbg-two-col { grid-template-columns: 1fr; }
  .tbg-grid--3, .tbg-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tbg-vtimeline { grid-template-columns: repeat(2, 1fr); }
  .tbg-footer__grid { grid-template-columns: 1fr 1fr; }
  .tbg-ribbon__row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .tbg-toggle { display: flex; }
  .tbg-nav {
    position: fixed; top: 0; right: 0; height: 100%; width: min(320px, 84vw);
    background: var(--tbg-white); flex-direction: column; align-items: flex-start;
    padding: 90px 26px 26px; gap: 24px;
    transform: translateX(100%); transition: transform 240ms ease-out;
    box-shadow: -12px 0 30px rgba(28,23,18,0.14);
  }
  .tbg-nav.is-open { transform: translateX(0); }
  .tbg-nav__list { flex-direction: column; gap: 16px; width: 100%; }
  .tbg-nav__cta { width: 100%; }
  .tbg-grid--2, .tbg-grid--3, .tbg-grid--4 { grid-template-columns: 1fr; }
  .tbg-form-row { grid-template-columns: 1fr; }
  .tbg-footer__grid { grid-template-columns: 1fr; }
  .tbg-ribbon__row { grid-template-columns: 1fr 1fr; }
  .tbg-vtimeline { grid-template-columns: 1fr; }
}
