/* TRASHY MARKETING - Master CSS */

/* BRAND TOKENS */
:root {
  --tm-near-black:  #0F1209;
  --tm-dark-olive:  #1A1F10;
  --tm-lime:        #CAFF00;
  --tm-deep-lime:   #9FCC00;
  --tm-off-white:   #F5F5F0;
  --tm-rail:        4px;
}

/* FIXED HEADER ANCHOR OFFSET */
[id] {
  scroll-margin-top: 80px;
}

/* GLOBAL BASE */
body {
  font-family: 'DM Sans', sans-serif !important;
  background-color: var(--tm-near-black) !important;
  color: var(--tm-off-white) !important;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.tm-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999 !important;
  width: 100% !important;
  background: rgba(15, 18, 9, 0.97) !important;
  border-bottom: 1px solid rgba(245, 245, 240, 0.06) !important;
  backdrop-filter: blur(8px);
}

.tm-nav-logo .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 21px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--tm-off-white) !important;
}

.tm-nav-link a {
  color: rgba(245, 245, 240, 0.38) !important;
  text-decoration: none !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  transition: color 0.2s ease !important;
}
.tm-nav-link a:hover {
  color: var(--tm-off-white) !important;
}
.tm-nav-link .elementor-heading-title {
  font-size: 13px !important;
}

.tm-nav-cta .elementor-button {
  background: transparent !important;
  border: 1.5px solid var(--tm-lime) !important;
  color: var(--tm-lime) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%) !important;
  border-radius: 0 !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.tm-nav-cta .elementor-button:hover {
  background: var(--tm-lime) !important;
  color: var(--tm-near-black) !important;
}

@media (max-width: 767px) {
  .tm-nav-link,
  .tm-nav-cta {
    display: none !important;
  }
}

/* SHARED COMPONENTS */
.tm-rail {
  border-left: var(--tm-rail) solid var(--tm-lime) !important;
}

.tm-section-border-top {
  border-top: 3px solid var(--tm-lime) !important;
}

.tm-eyebrow-dark .elementor-heading-title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--tm-lime) !important;
}
.tm-eyebrow-dark .elementor-heading-title::before {
  content: '' !important;
  display: inline-block !important;
  width: 22px !important;
  height: 2px !important;
  background: var(--tm-lime) !important;
  flex-shrink: 0 !important;
}

.tm-eyebrow-light .elementor-heading-title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--tm-deep-lime) !important;
}
.tm-eyebrow-light .elementor-heading-title::before {
  content: '' !important;
  display: inline-block !important;
  width: 22px !important;
  height: 2px !important;
  background: var(--tm-deep-lime) !important;
  flex-shrink: 0 !important;
}

.tm-btn-primary .elementor-button {
  background: var(--tm-lime) !important;
  color: var(--tm-near-black) !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%) !important;
  border-radius: 0 !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: background 0.2s ease !important;
}
.tm-btn-primary .elementor-button:hover {
  background: var(--tm-deep-lime) !important;
  color: var(--tm-near-black) !important;
}

.tm-btn-outline-dark .elementor-button {
  background: transparent !important;
  color: rgba(245, 245, 240, 0.5) !important;
  border: 1.5px solid rgba(245, 245, 240, 0.2) !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%) !important;
  border-radius: 0 !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: border-color 0.2s ease, color 0.2s ease !important;
}
.tm-btn-outline-dark .elementor-button:hover {
  border-color: rgba(202, 255, 0, 0.5) !important;
  color: var(--tm-lime) !important;
}

/* HERO SECTION */
.tm-hero-section {
  min-height: 100vh !important;
  position: relative !important;
  overflow: hidden !important;
  background-color: var(--tm-near-black) !important;
}

.tm-hero-section::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    108deg,
    var(--tm-near-black) 0%,
    var(--tm-near-black) 58%,
    var(--tm-dark-olive) 58%,
    var(--tm-dark-olive) 100%
  ) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.tm-hero-section::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(202, 255, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 255, 0, 0.025) 1px, transparent 1px) !important;
  background-size: 48px 48px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.tm-hero-section > * {
  position: relative !important;
  z-index: 2 !important;
}

.tm-hero-headline .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 88px !important;
  line-height: 0.9 !important;
  text-transform: uppercase !important;
  color: var(--tm-off-white) !important;
  letter-spacing: -0.01em !important;
}

.tm-hero-sub .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 88px !important;
  line-height: 0.9 !important;
  text-transform: uppercase !important;
  color: var(--tm-lime) !important;
  letter-spacing: -0.01em !important;
}

.tm-hero-body .elementor-widget-text-editor p {
  font-size: 15px !important;
  color: rgba(245, 245, 240, 0.48) !important;
  line-height: 1.7 !important;
}

.tm-stats-bar {
  width: 100% !important;
  border-top: 1px solid rgba(202, 255, 0, 0.12) !important;
  background-color: transparent !important;
}

.tm-stat-item {
  border-right: 1px solid rgba(202, 255, 0, 0.08) !important;
  padding: 22px 32px !important;
}
.tm-stat-item:last-child {
  border-right: none !important;
}

.tm-stat-number .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 34px !important;
  color: var(--tm-lime) !important;
  line-height: 1 !important;
}

.tm-stat-label .elementor-heading-title {
  font-size: 12px !important;
  color: rgba(245, 245, 240, 0.32) !important;
  letter-spacing: 0.03em !important;
}

@media (max-width: 767px) {
  .tm-hero-headline .elementor-heading-title,
  .tm-hero-sub .elementor-heading-title {
    font-size: 56px !important;
  }
  .tm-stats-bar { flex-wrap: wrap !important; }
  .tm-stat-item {
    flex: 0 0 50% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(202, 255, 0, 0.08) !important;
  }
}

/* WHO WE ARE - LIGHT */
.tm-who-section {
  background-color: var(--tm-off-white) !important;
}

.tm-who-image-col {
  position: relative !important;
}
.tm-who-image-col::before {
  content: '' !important;
  position: absolute !important;
  top: -16px !important;
  left: -16px !important;
  right: 16px !important;
  bottom: 16px !important;
  border: 2px solid var(--tm-deep-lime) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.tm-who-image-col .elementor-widget-image {
  position: relative !important;
  z-index: 1 !important;
}
.tm-who-image-col img {
  display: block !important;
  width: 100% !important;
  height: 420px !important;
  object-fit: cover !important;
}

.tm-who-section .tm-section-h2 .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 52px !important;
  text-transform: uppercase !important;
  color: var(--tm-near-black) !important;
  line-height: 0.95 !important;
}

.tm-who-section .elementor-widget-text-editor p {
  font-size: 15px !important;
  color: rgba(15, 18, 9, 0.55) !important;
  line-height: 1.75 !important;
}

.tm-divider-lime {
  border-color: var(--tm-deep-lime) !important;
  border-width: 2px !important;
}

@media (max-width: 1024px) {
  .tm-who-section { flex-direction: column !important; }
  .tm-who-image-col img { height: 340px !important; }
}

/* SERVICES - DARK */
.tm-services-section {
  background-color: var(--tm-near-black) !important;
}

.tm-services-section .tm-section-h2 .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 52px !important;
  text-transform: uppercase !important;
  color: var(--tm-off-white) !important;
  line-height: 0.95 !important;
}

.tm-services-section .tm-section-sub .elementor-widget-text-editor p {
  font-size: 14px !important;
  color: rgba(245, 245, 240, 0.4) !important;
  line-height: 1.65 !important;
}

.tm-service-card {
  background-color: var(--tm-near-black) !important;
  border-left: 2px solid transparent !important;
  transition: background-color 0.2s ease, border-color 0.2s ease !important;
}
.tm-service-card:hover {
  background-color: var(--tm-dark-olive) !important;
  border-left-color: var(--tm-lime) !important;
}

.tm-service-num .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 40px !important;
  color: rgba(202, 255, 0, 0.15) !important;
  line-height: 1 !important;
  transition: color 0.2s ease !important;
}
.tm-service-card:hover .tm-service-num .elementor-heading-title {
  color: rgba(202, 255, 0, 0.25) !important;
}

.tm-service-name .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: var(--tm-off-white) !important;
}

.tm-service-desc .elementor-widget-text-editor p {
  font-size: 12px !important;
  color: rgba(245, 245, 240, 0.38) !important;
  line-height: 1.65 !important;
}

@media (max-width: 1024px) {
  .tm-services-grid { flex-wrap: wrap !important; }
  .tm-service-card { width: 50% !important; }
}
@media (max-width: 767px) {
  .tm-service-card { width: 100% !important; }
}

/* WHY TRASHY - LIGHT */
.tm-why-section {
  background-color: var(--tm-off-white) !important;
}

.tm-why-section .tm-section-h2 .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 52px !important;
  text-transform: uppercase !important;
  color: var(--tm-near-black) !important;
  line-height: 0.95 !important;
}

.tm-pain-card {
  background-color: var(--tm-off-white) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: background-color 0.2s ease !important;
}
.tm-pain-card:hover {
  background-color: #e8e8e2 !important;
}
.tm-pain-card::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: var(--tm-deep-lime) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.35s ease !important;
}
.tm-pain-card:hover::after {
  transform: scaleX(1) !important;
}

.tm-pain-card .tm-pain-title .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--tm-near-black) !important;
}
.tm-pain-card .elementor-widget-text-editor p {
  font-size: 13px !important;
  color: rgba(15, 18, 9, 0.5) !important;
  line-height: 1.65 !important;
}

.tm-diff-quote {
  border-left: 3px solid var(--tm-deep-lime) !important;
  padding-left: 28px !important;
}
.tm-diff-quote .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  color: var(--tm-near-black) !important;
}

.tm-diff-list .elementor-widget-text-editor li {
  font-size: 14px !important;
  color: rgba(15, 18, 9, 0.6) !important;
  line-height: 1.65 !important;
}

/* CONTACT - DARK */
.tm-contact-section {
  background-color: var(--tm-near-black) !important;
}

.tm-contact-section .tm-section-h2 .elementor-heading-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 52px !important;
  text-transform: uppercase !important;
  color: var(--tm-off-white) !important;
  line-height: 0.95 !important;
}

.tm-contact-section .elementor-widget-text-editor p {
  font-size: 15px !important;
  color: rgba(245, 245, 240, 0.45) !important;
  line-height: 1.7 !important;
}

.tm-contact-form-col {
  background-color: #ffffff !important;
}

.tm-contact-form .elementor-field-group input,
.tm-contact-form .elementor-field-group select,
.tm-contact-form .elementor-field-group textarea {
  background: var(--tm-off-white) !important;
  border: 1.5px solid #e4e4dc !important;
  border-radius: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: var(--tm-near-black) !important;
  transition: border-color 0.2s ease !important;
}
.tm-contact-form .elementor-field-group input:focus,
.tm-contact-form .elementor-field-group select:focus,
.tm-contact-form .elementor-field-group textarea:focus {
  border-color: var(--tm-deep-lime) !important;
  background: #ffffff !important;
  outline: none !important;
}

.tm-contact-form .elementor-button {
  background: var(--tm-lime) !important;
  color: var(--tm-near-black) !important;
  width: 100% !important;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%) !important;
  border-radius: 0 !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: background 0.2s ease !important;
}
.tm-contact-form .elementor-button:hover {
  background: var(--tm-deep-lime) !important;
  color: var(--tm-near-black) !important;
}

@media (max-width: 1024px) {
  .tm-contact-section { flex-direction: column !important; }
  .tm-contact-form-col { padding: 40px 32px !important; }
}

/* FOOTER */
.tm-footer {
  background-color: var(--tm-dark-olive) !important;
  border-top: 1px solid rgba(202, 255, 0, 0.1) !important;
  border-left: var(--tm-rail) solid var(--tm-lime) !important;
}

/* ADD NEW SECTIONS BELOW THIS LINE */