:root {
  --tac-ink: #2f221b;
  --tac-ink-soft: #4f4038;
  --tac-copy: #5d5049;
  --tac-muted: #796d66;
  --tac-cream: #fbf7f1;
  --tac-cream-deep: #f4ece3;
  --tac-paper: #ffffff;
  --tac-line: #e7ddd2;
  --tac-line-strong: #d9cbbd;
  --tac-amber: #cf8524;
  --tac-amber-dark: #9a6324;
  --tac-amber-soft: #f4e2c7;
  --tac-olive: #465c3d;
  --tac-shadow: 0 24px 70px rgba(60, 42, 31, 0.1);
  --tac-shadow-soft: 0 12px 36px rgba(60, 42, 31, 0.08);
  --tac-radius-sm: 12px;
  --tac-radius-md: 20px;
  --tac-radius-lg: 30px;
  --tac-shell: 1240px;
}

html {
  scroll-behavior: smooth;
}

body.ta-theme {
  margin: 0;
  min-width: 300px;
  overflow-x: clip;
  background: var(--tac-cream);
  color: var(--tac-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.ta-menu-open {
  overflow: hidden;
}

.ta-theme *,
.ta-theme *::before,
.ta-theme *::after {
  box-sizing: border-box;
}

.ta-theme a {
  color: inherit;
  text-decoration: none;
}

.ta-theme img {
  display: block;
  max-width: 100%;
}

.ta-theme button,
.ta-theme input {
  font: inherit;
}

.ta-theme :focus-visible {
  outline: 3px solid var(--tac-amber);
  outline-offset: 3px;
}

.ta-shell {
  width: min(var(--tac-shell), calc(100% - 40px));
  margin-inline: auto;
}

.ta-site-content {
  min-height: 50vh;
  overflow: clip;
}

.ta-skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: 8px;
  background: var(--tac-paper);
  color: var(--tac-ink);
}

/* Utility bar and primary header */
.ta-utility {
  position: relative;
  z-index: 102;
  background: var(--tac-ink);
  color: #e8ddd5;
  font-size: 12.5px;
}

.ta-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 24px;
}

.ta-utility nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ta-utility a {
  color: #f7efe7;
  font-weight: 650;
}

.ta-utility a:hover {
  color: #efb65e;
}

.ta-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(231, 221, 210, 0.9);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 1px 0 rgba(76, 54, 42, 0.03);
  backdrop-filter: blur(16px);
}

body.admin-bar .ta-site-header {
  top: 32px;
}

.ta-site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  min-height: 82px;
}

.ta-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--tac-ink);
}

.ta-brand__mark {
  display: grid;
  place-items: center;
  flex: none;
}

.ta-brand__mark img {
  width: auto;
  max-width: 48px;
  height: 40px;
  object-fit: contain;
}

.ta-brand__monogram {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px 12px 12px 4px;
  background: var(--tac-amber);
  color: #241911;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.ta-brand__wordmark {
  color: var(--tac-ink);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.ta-brand__wordmark strong {
  color: var(--tac-amber);
  font-weight: inherit;
}

.ta-primary-nav {
  min-width: 0;
}

.ta-primary-nav .ta-menu,
.ta-primary-nav > .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ta-primary-nav li {
  position: relative;
  margin: 0;
}

.ta-primary-nav li::before {
  display: none;
}

.ta-primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--tac-ink-soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.ta-primary-nav li > a::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 2px;
  border-radius: 4px;
  background: var(--tac-amber);
  content: "";
  transition: left 0.18s ease, right 0.18s ease;
}

.ta-primary-nav li:hover > a,
.ta-primary-nav .current-menu-item > a,
.ta-primary-nav .current_page_item > a {
  color: var(--tac-amber-dark);
}

.ta-primary-nav li:hover > a::after,
.ta-primary-nav .current-menu-item > a::after,
.ta-primary-nav .current_page_item > a::after {
  right: 0;
  left: 0;
}

.ta-primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  display: grid;
  width: 220px;
  margin: 0;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--tac-line);
  border-radius: 14px;
  background: var(--tac-paper);
  box-shadow: var(--tac-shadow-soft);
  list-style: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.ta-primary-nav li:hover > .sub-menu,
.ta-primary-nav li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.ta-primary-nav .sub-menu a {
  width: 100%;
  min-height: 40px;
  padding: 6px 10px;
  border-radius: 8px;
}

.ta-primary-nav .sub-menu a:hover {
  background: var(--tac-cream);
}

.ta-header-cta,
.ta-mobile-compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--tac-amber);
  color: #251a13;
  font-size: 13.5px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(207, 133, 36, 0.2);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.ta-header-cta svg {
  width: 19px;
  height: 19px;
}

.ta-header-cta:hover,
.ta-mobile-compare:hover {
  color: #251a13;
  box-shadow: 0 13px 28px rgba(207, 133, 36, 0.28);
  transform: translateY(-1px);
}

.ta-primary-nav .ta-mobile-compare {
  display: none;
}

.ta-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--tac-line);
  border-radius: 11px;
  background: var(--tac-paper);
  color: var(--tac-ink);
  cursor: pointer;
}

.ta-menu-toggle__label {
  font-size: 13px;
  font-weight: 750;
}

.ta-menu-toggle__icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.ta-menu-toggle__icon i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 9px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

/* Homepage hero */
.ta-home {
  width: 100%;
  margin: 0;
  background: var(--tac-cream);
}

.ta-home h1,
.ta-home h2,
.ta-home h3,
.ta-footer-cta h2 {
  margin: 0;
  color: var(--tac-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-transform: none;
}

.ta-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--tac-line);
  background:
    linear-gradient(rgba(251, 247, 241, 0.9), rgba(251, 247, 241, 0.98)),
    radial-gradient(circle at 50% 0%, #f1d4aa 0, transparent 60%);
}

.ta-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background-image:
    linear-gradient(to right, rgba(103, 76, 57, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(103, 76, 57, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.ta-hero__glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  opacity: 0.34;
  border: 1px solid rgba(207, 133, 36, 0.28);
  border-radius: 50%;
}

.ta-hero__glow::before,
.ta-hero__glow::after {
  position: absolute;
  inset: 48px;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.ta-hero__glow::after {
  inset: 108px;
}

.ta-hero__glow--one {
  top: 80px;
  left: -190px;
}

.ta-hero__glow--two {
  right: -210px;
  bottom: -40px;
}

.ta-hero__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: clamp(78px, 9vw, 126px) clamp(60px, 7vw, 90px);
  text-align: center;
}

.ta-eyebrow,
.ta-section-heading > span,
.ta-confidence-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--tac-amber-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.ta-eyebrow::before,
.ta-eyebrow::after {
  width: 24px;
  height: 1px;
  background: var(--tac-amber);
  content: "";
}

.ta-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 0.99;
}

.ta-hero__inner > p {
  max-width: 720px;
  margin: 25px auto 0;
  color: var(--tac-copy);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.ta-tractor-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(720px, 100%);
  min-height: 66px;
  margin-top: 36px;
  padding: 7px 7px 7px 19px;
  border: 1px solid var(--tac-line-strong);
  border-radius: 18px;
  background: var(--tac-paper);
  box-shadow: var(--tac-shadow);
}

.ta-tractor-search svg {
  width: 23px;
  height: 23px;
  color: var(--tac-muted);
}

.ta-tractor-search input[type="search"] {
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--tac-ink);
  font-size: 16px;
  box-shadow: none;
}

.ta-tractor-search input[type="search"]::placeholder {
  color: #8c8078;
}

.ta-tractor-search button {
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  border-radius: 13px;
  background: var(--tac-ink);
  color: #fff8ef;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease;
}

.ta-tractor-search button:hover {
  background: var(--tac-amber-dark);
  transform: translateY(-1px);
}

.ta-hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 30px;
  margin-top: 24px;
}

.ta-hero-links a {
  color: var(--tac-ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.ta-hero-links a:hover {
  color: var(--tac-amber-dark);
}

.ta-hero-links span {
  margin-left: 6px;
  color: var(--tac-amber);
}

.ta-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 54px;
}

.ta-proof-row > div {
  display: grid;
  gap: 2px;
}

.ta-proof-row strong {
  color: var(--tac-ink);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.1;
}

.ta-proof-row span {
  color: var(--tac-muted);
  font-size: 12.5px;
  font-weight: 650;
}

.ta-proof-row i {
  width: 1px;
  height: 34px;
  background: var(--tac-line-strong);
}

.ta-home-editor-content {
  border-bottom: 1px solid var(--tac-line);
  background: var(--tac-paper);
}

.ta-prose {
  padding-block: 48px;
}

/* Shared homepage structure */
.ta-section {
  padding-block: clamp(66px, 8vw, 108px);
}

.ta-section-heading {
  margin-bottom: clamp(34px, 5vw, 54px);
}

.ta-section-heading > span,
.ta-confidence-copy > span {
  margin-bottom: 12px;
}

.ta-section-heading h2,
.ta-confidence-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.ta-section-heading > p,
.ta-section-heading--split > p {
  color: var(--tac-copy);
  font-size: 16.5px;
  line-height: 1.7;
}

.ta-section-heading--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.ta-section-heading--center > p {
  max-width: 650px;
  margin: 16px auto 0;
}

.ta-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 40px;
}

.ta-section-heading--split > p {
  margin: 0;
}

.ta-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.ta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.ta-button:hover {
  transform: translateY(-2px);
}

.ta-button--outline {
  border-color: var(--tac-line-strong);
  background: var(--tac-paper);
  color: var(--tac-ink);
}

.ta-button--outline:hover {
  border-color: var(--tac-amber);
  color: var(--tac-amber-dark);
}

.ta-theme .ta-button--dark {
  background: var(--tac-ink);
  color: #fff8ef;
}

.ta-theme .ta-button--dark:hover {
  background: var(--tac-amber-dark);
  color: white;
}

.ta-button--light {
  background: var(--tac-paper);
  color: var(--tac-ink);
  box-shadow: 0 13px 30px rgba(21, 13, 9, 0.18);
}

/* Manufacturer directory */
.ta-brands-section {
  background: var(--tac-paper);
}

.ta-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ta-brand-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 13px;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--tac-line);
  border-radius: var(--tac-radius-sm);
  background: #fdfbf8;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.ta-brand-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--tac-brand-accent, var(--tac-amber));
  content: "";
}

.ta-brand-card:hover {
  border-color: var(--tac-line-strong);
  box-shadow: var(--tac-shadow-soft);
  transform: translateY(-3px);
}

.ta-brand-card__mark {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--tac-brand-accent, var(--tac-amber)) 12%, white);
  color: var(--tac-brand-accent, var(--tac-amber-dark));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.ta-brand-card strong {
  min-width: 0;
  overflow: hidden;
  color: var(--tac-ink);
  font-size: 14.5px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ta-brand-card small {
  color: var(--tac-muted);
  font-size: 12px;
  font-weight: 600;
}

.ta-brand-card i {
  grid-row: 1 / 3;
  color: var(--tac-amber-dark);
  font-size: 17px;
  font-style: normal;
}

/* Latest tractor cards */
.ta-latest-section {
  background: var(--tac-cream);
}

.ta-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ta-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--tac-line);
  border-radius: var(--tac-radius-md);
  background: var(--tac-paper);
  box-shadow: 0 1px 0 rgba(78, 53, 38, 0.02);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.ta-product-card:hover {
  box-shadow: var(--tac-shadow);
  transform: translateY(-5px);
}

.ta-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tac-cream-deep);
}

.ta-product-card__media::before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(154, 99, 36, 0.22);
  font-size: clamp(42px, 8vw, 76px);
  font-weight: 900;
  letter-spacing: -0.08em;
  content: "TA";
  transform: translate(-50%, -50%);
}

.ta-product-card__media::after {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(47, 34, 27, 0.09));
  content: "";
}

.ta-product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.ta-product-card:hover .ta-product-card__media img {
  transform: scale(1.035);
}

.ta-product-card__brand,
.ta-product-card__rating {
  position: absolute;
  z-index: 2;
  top: 15px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.ta-product-card__brand {
  left: 15px;
  background: var(--tac-card-accent, var(--tac-amber));
  color: white;
  text-transform: uppercase;
}

.ta-product-card__rating {
  right: 15px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--tac-ink);
  box-shadow: 0 6px 18px rgba(47, 34, 27, 0.12);
}

.ta-product-card__rating small {
  margin-left: 2px;
  color: var(--tac-muted);
  font-size: 9px;
}

.ta-product-card__body {
  padding: 22px;
}

.ta-product-card h3 {
  font-size: 21px;
  line-height: 1.2;
}

.ta-product-card h3 a:hover {
  color: var(--tac-amber-dark);
}

.ta-product-card dl {
  margin: 19px 0 0;
}

.ta-product-card dl > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--tac-line);
}

.ta-product-card dt,
.ta-product-card dd {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
}

.ta-product-card dt {
  color: var(--tac-muted);
  font-weight: 750;
}

.ta-product-card dd {
  min-width: 0;
  color: var(--tac-ink-soft);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.ta-product-card__body > p {
  margin: 14px 0 0;
  color: var(--tac-copy);
  font-size: 14px;
}

.ta-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--tac-amber-dark);
  font-size: 13.5px;
  font-weight: 800;
}

.ta-text-link span {
  transition: transform 0.16s ease;
}

.ta-text-link:hover span {
  transform: translateX(3px);
}

.ta-empty-state {
  padding: 60px 30px;
  border: 1px dashed var(--tac-line-strong);
  border-radius: var(--tac-radius-md);
  background: var(--tac-paper);
  text-align: center;
}

.ta-empty-state > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 20px 20px 20px 7px;
  background: var(--tac-amber-soft);
  color: var(--tac-amber-dark);
  font-weight: 900;
}

.ta-empty-state h3 {
  font-size: 24px;
}

.ta-empty-state p {
  margin: 10px auto 0;
  color: var(--tac-copy);
}

/* Research flow */
.ta-process-section {
  border-block: 1px solid var(--tac-line);
  background: var(--tac-paper);
}

.ta-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ta-process-grid article {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--tac-line);
  border-radius: var(--tac-radius-md);
  background: var(--tac-cream);
}

.ta-process-grid article > span {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #e4d7c9;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.ta-process-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  border-radius: 15px;
  background: var(--tac-amber-soft);
  color: var(--tac-amber-dark);
}

.ta-process-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.ta-process-grid h3 {
  font-size: 24px;
}

.ta-process-grid p {
  margin: 12px 0 0;
  color: var(--tac-copy);
  font-size: 15px;
  line-height: 1.65;
}

.ta-process-grid a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--tac-amber-dark);
  font-size: 13.5px;
  font-weight: 800;
}

/* Confidence panel */
.ta-confidence-section {
  background: var(--tac-cream);
}

.ta-confidence-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border-radius: var(--tac-radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(207, 133, 36, 0.18), transparent 32%),
    var(--tac-ink);
  color: #f6eee6;
}

.ta-confidence-copy > span {
  color: #efb65e;
}

.ta-confidence-copy h2 {
  color: white;
}

.ta-confidence-copy > p {
  max-width: 620px;
  margin: 19px 0 0;
  color: #d4c8c0;
  font-size: 16px;
  line-height: 1.7;
}

.ta-confidence-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ta-confidence-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #f1e8e1;
  font-size: 14px;
  font-weight: 650;
}

.ta-confidence-copy li::before {
  display: grid;
  place-items: center;
  flex: none;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--tac-amber);
  color: #21160f;
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.ta-confidence-visual {
  position: relative;
  min-height: 360px;
}

.ta-spec-sheet {
  position: absolute;
  inset: 10px 20px 10px 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #fffaf4;
  box-shadow: 0 30px 70px rgba(13, 8, 5, 0.3);
  transform: rotate(3deg);
}

.ta-spec-sheet > span {
  display: block;
  width: 48%;
  height: 12px;
  margin-bottom: 9px;
  border-radius: 20px;
  background: #eadfd4;
}

.ta-spec-sheet > span:first-child {
  width: 34%;
  height: 8px;
  background: #e9b467;
}

.ta-spec-sheet > span:nth-child(3) {
  width: 68%;
  margin-bottom: 30px;
}

.ta-spec-sheet > div {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 25px;
  padding: 16px 0;
  border-top: 1px solid #eadfd4;
}

.ta-spec-sheet i,
.ta-spec-sheet b {
  height: 8px;
  border-radius: 20px;
  background: #d8cbc0;
}

.ta-spec-sheet b {
  background: #82746c;
}

.ta-score-badge {
  position: absolute;
  right: -4px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 7px solid var(--tac-ink);
  border-radius: 50%;
  background: var(--tac-amber);
  color: #22170f;
  box-shadow: 0 15px 40px rgba(20, 12, 7, 0.3);
}

.ta-score-badge strong {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.ta-score-badge span {
  margin-top: -6px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* Footer */
.ta-footer-cta {
  padding-block: 44px;
  background: var(--tac-amber);
  color: #251a13;
}

.ta-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.ta-footer-cta__inner > div {
  min-width: 0;
}

.ta-footer-cta__inner > div > span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ta-footer-cta h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.08;
}

.ta-footer-cta p {
  max-width: 660px;
  margin: 10px 0 0;
  color: #594022;
  font-size: 15px;
}

.ta-site-footer {
  background: #241a15;
  color: #bfb3ab;
}

.ta-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, minmax(140px, 0.75fr));
  gap: clamp(34px, 6vw, 76px);
  padding-block: 66px 54px;
}

.ta-site-footer .ta-brand {
  color: white;
}

.ta-site-footer .ta-brand__wordmark {
  color: white;
}

.ta-site-footer .ta-brand__monogram {
  background: var(--tac-amber);
}

.ta-footer-about > p {
  max-width: 360px;
  margin: 20px 0 0;
  color: #bfb3ab;
  font-size: 14px;
  line-height: 1.7;
}

.ta-footer-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 11px;
  border: 1px solid #46372f;
  border-radius: 999px;
  color: #d9cec7;
  font-size: 11.5px;
  font-weight: 700;
}

.ta-footer-proof span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tac-amber);
  color: #21160f;
  font-size: 10px;
  font-weight: 900;
}

.ta-footer-column h2 {
  margin: 7px 0 19px;
  color: #fff8ef;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ta-footer-menu {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ta-footer-menu li {
  margin: 0;
}

.ta-footer-menu li::before {
  display: none;
}

.ta-footer-menu a {
  color: #bfb3ab;
  font-size: 13.5px;
  font-weight: 550;
}

.ta-footer-menu a:hover {
  color: #efb65e;
}

.ta-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid #3a2c25;
  color: #8f827a;
  font-size: 11.5px;
}

.ta-footer-bottom p {
  margin: 0;
}

.ta-footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  color: #d8ccc5;
  font-weight: 750;
}

.ta-footer-bottom a:hover {
  color: #efb65e;
}

/* Integrate parent and APS views with the custom site chrome. */
.ta-theme .ast-container,
.ta-theme .site-content > .ast-container {
  width: 100%;
  max-width: none;
}

.ta-theme.single-aps-products .ta-site-content {
  overflow: visible;
}

/* Tablet */
@media (max-width: 1050px) {
  .ta-site-header__inner {
    gap: 22px;
  }

  .ta-primary-nav .ta-menu,
  .ta-primary-nav > .menu {
    gap: 20px;
  }

  .ta-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ta-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ta-footer-grid {
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(120px, 0.65fr));
    gap: 32px;
  }
}

@media (max-width: 920px) {
  .ta-site-header {
    --tac-mobile-header-height: 72px;
  }

  .ta-site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 72px;
  }

  .ta-menu-toggle {
    display: inline-flex;
  }

  .ta-primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    height: calc(100vh - var(--tac-mobile-header-height));
    height: calc(100dvh - var(--tac-mobile-header-height));
    max-height: none;
    padding: 18px 20px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-bottom: 1px solid var(--tac-line);
    background:
      linear-gradient(180deg, var(--tac-paper) 0%, var(--tac-cream) 100%);
    box-shadow: 0 18px 40px rgba(56, 39, 29, 0.12);
  }

  .ta-site-header.is-menu-open .ta-primary-nav {
    display: block;
  }

  .ta-site-header.is-menu-open .ta-menu-toggle__icon i:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .ta-site-header.is-menu-open .ta-menu-toggle__icon i:nth-child(2) {
    opacity: 0;
  }

  .ta-site-header.is-menu-open .ta-menu-toggle__icon i:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .ta-primary-nav .ta-menu,
  .ta-primary-nav > .menu {
    display: grid;
    gap: 2px;
  }

  .ta-primary-nav a {
    width: 100%;
    min-height: 48px;
    padding: 6px 8px;
    border-bottom: 1px solid var(--tac-line);
    font-size: 15px;
  }

  .ta-primary-nav li > a::after {
    display: none;
  }

  .ta-primary-nav .sub-menu {
    position: static;
    width: 100%;
    padding: 0 0 5px 16px;
    visibility: visible;
    opacity: 1;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .ta-primary-nav .ta-mobile-compare {
    display: inline-flex;
    width: 100%;
    margin-top: 14px;
    color: #251a13;
  }

  .ta-confidence-card {
    grid-template-columns: 1fr 0.8fr;
  }

  .ta-footer-grid {
    grid-template-columns: minmax(280px, 1.3fr) repeat(2, minmax(140px, 0.7fr));
  }

  .ta-footer-column:last-child {
    grid-column: 2 / 4;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .ta-site-header {
    --tac-mobile-header-height: 66px;
  }

  body.admin-bar .ta-site-header {
    top: 46px;
  }

  .ta-shell {
    width: min(var(--tac-shell), calc(100% - 30px));
  }

  .ta-utility__inner {
    justify-content: center;
    min-height: 34px;
  }

  .ta-utility__inner > span {
    display: none;
  }

  .ta-utility nav {
    gap: 26px;
  }

  .ta-site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 66px;
  }

  .ta-brand {
    gap: 8px;
  }

  .ta-brand__monogram {
    width: 35px;
    height: 35px;
    border-radius: 10px 10px 10px 4px;
    font-size: 11px;
  }

  .ta-brand__mark img {
    max-width: 42px;
    height: 34px;
  }

  .ta-brand__wordmark {
    font-size: 18px;
  }

  .ta-header-cta {
    display: none;
  }

  .ta-hero__inner {
    padding-block: 62px 54px;
  }

  .ta-eyebrow {
    margin-bottom: 15px;
    font-size: 10.5px;
  }

  .ta-eyebrow::before,
  .ta-eyebrow::after {
    width: 16px;
  }

  .ta-hero h1 {
    font-size: clamp(36px, 11vw, 54px);
    line-height: 1.02;
  }

  .ta-hero__inner > p {
    margin-top: 19px;
    font-size: 16px;
    line-height: 1.6;
  }

  .ta-tractor-search {
    grid-template-columns: auto minmax(0, 1fr);
    margin-top: 29px;
    padding: 9px 12px 9px 16px;
    border-radius: 16px;
  }

  .ta-tractor-search input[type="search"] {
    padding-inline: 11px 0;
  }

  .ta-tractor-search button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
  }

  .ta-hero-links {
    display: grid;
    gap: 11px;
  }

  .ta-proof-row {
    width: 100%;
    gap: 12px;
    margin-top: 39px;
  }

  .ta-proof-row > div {
    flex: 1;
  }

  .ta-proof-row strong {
    font-size: 20px;
  }

  .ta-proof-row span {
    font-size: 10.5px;
    line-height: 1.25;
  }

  .ta-proof-row i {
    height: 32px;
  }

  .ta-section {
    padding-block: 62px;
  }

  .ta-section-heading--split {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .ta-section-heading--split > p {
    max-width: 560px;
    margin-inline: auto;
  }

  .ta-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ta-product-grid {
    grid-template-columns: 1fr;
  }

  .ta-process-grid {
    grid-template-columns: 1fr;
  }

  .ta-process-grid article {
    text-align: center;
  }

  .ta-process-icon {
    margin-inline: auto;
  }

  .ta-confidence-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .ta-confidence-copy {
    text-align: center;
  }

  .ta-confidence-copy li {
    justify-content: center;
  }

  .ta-confidence-visual {
    min-height: 290px;
  }

  .ta-footer-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ta-footer-cta .ta-button {
    width: 100%;
  }

  .ta-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ta-footer-about {
    grid-column: 1 / -1;
  }

  .ta-footer-column:last-child {
    grid-column: auto;
  }

  .ta-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .ta-shell {
    width: min(var(--tac-shell), calc(100% - 24px));
  }

  .ta-utility {
    font-size: 11.5px;
  }

  .ta-menu-toggle__label {
    display: none;
  }

  .ta-menu-toggle {
    width: 42px;
    padding-inline: 10px;
  }

  .ta-hero__inner {
    padding-block: 51px 48px;
  }

  .ta-hero h1 {
    font-size: clamp(34px, 11.5vw, 46px);
  }

  .ta-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ta-proof-row i {
    display: none;
  }

  .ta-brand-grid {
    grid-template-columns: 1fr;
  }

  .ta-product-card__body {
    padding: 19px;
  }

  .ta-confidence-visual {
    min-height: 250px;
  }

  .ta-spec-sheet {
    inset: 4px 5px 5px;
    padding: 22px;
  }

  .ta-score-badge {
    right: -5px;
    width: 92px;
    height: 92px;
  }

  .ta-score-badge strong {
    font-size: 25px;
  }

  .ta-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ta-footer-about,
  .ta-footer-column:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ta-theme *,
  .ta-theme *::before,
  .ta-theme *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .ta-utility,
  .ta-site-header,
  .ta-footer-cta,
  .ta-site-footer {
    display: none !important;
  }
}
